Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Create unlock everything #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions unlock everything
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot@latest/ingot.min.js';document.body.appendChild(a);}())
<title>Ingot</title>

<div class="title">Ingot</div>

<div class="button" >Launch Ingot<a href="javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot@latest/ingot.min.js';document.body.appendChild(a);}())" class="button-text">Ingot</a></div>
<div class="button-note">Drag the button to your bookmarks bar for easy access</div>

<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
font-family: "Roboto";
}

:root {
color-scheme: dark;
}

body {
background: #202124;
margin: 0;
padding: 0;
}

.title {
text-align: center;
font-size: 50px;
margin: 20px;
margin-bottom: 50px;
user-select: none;
font-weight: 500;
}

.button {
position: relative;
width: 230px;
height: 47px;
border: 1px solid rgb(95, 99, 104);
color: rgb(138, 180, 248);
background: rgba(138, 180, 248, 0.08);
border-radius: 6px;
margin: 20px auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
user-select: none;
font-weight: 500;
}

.button:active {
background: rgba(138, 180, 248, 0.25);
}

.button-text {
opacity: 0;
user-select: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
width: 100%;
}

.button-note {
margin: 0 auto;
text-align: center;
color: rgb(138, 180, 248);
width: 300px;
user-select: none;
}
</style>