File size: 2,323 Bytes
fa55792
 
f7b79e2
 
 
 
 
fa55792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7b79e2
fa55792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7b79e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0d868b1
f7b79e2
 
 
 
 
 
 
 
 
0d868b1
 
f7b79e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fa55792
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
footer {visibility: hidden}

@font-face {
    font-family: NeueMontreal;
    src: url("https://invariantlabs.ai/theme/NeueMontreal-Regular.otf") format("opentype");
}

body.invariant.dark {
    background-color: #111113;
    --body-background-fill: #111113;
}
body.invariant:not(.dark) {
    background-color: white;
    --body-background-fill: white;
}

.toggled-off-button {
    background-color: rgb(85 85 85 / 69%);
    color: rgb(255 255 255 / 60%);
    border-color: #ced4da;
}  

.toggled-off-button:hover { 
    cursor: not-allowed;
}

.toggled-on-button {
    background-color: #4f46e5;
    color: white;
    border-color: #007bff;
}

#submit-button {
    border: 1pt solid #0f9d0f;
    background-color: rgb(15 157 15 / 41%);
}

#reset-button {
    border: 1pt solid #BA2929;
    background-color: rgba(186, 41, 41, 0.1764705882);
}

#instruction-banner {
    background: linear-gradient(92deg, #434DA6 7.93%, #10135C 94.43%);
    padding: 10pt 20pt;
}

.hidden-button {
    display: none
}

#key_input {
    font-family: 'Courier New', Courier, monospace;
}

.home-banner {
    background: linear-gradient(92deg, #4f46e5 7.93%, #10135c 94.43%);
}

.home-banner-wrapper {
    color: #fff;
    border-radius: 5pt;
    margin: 0 10pt;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10pt;
}

.home-banner-buttons a {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 20pt;
    font-size: 10pt;
    cursor: pointer;
    transition: background-color .5s, color .5s;
    line-height: normal;
    height: 35px;
    padding: 8pt 20pt;
    text-decoration: none; /* Remove underlining */
}

/* Base style for the button */
.button-loading {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.button-loading:hover {
    cursor: loading;
}

/* Adding a wave effect */
.button-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: wave-animation 2s infinite;
}

/* Animation for the wave */
@keyframes wave-animation {
    0% {
        left: -100%;
    }
    50% {
        left: 50%;
    }
    100% {
        left: 100%;
    }
}