blob: d884cb98215fce0cb705ad97bce86a0a1328b5e3 (
plain)
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
120
121
122
123
124
|
/* greencircle */
#lcolonq-gc-body {
overflow-y: scroll;
height: auto;
}
#lcolonq-gc-hero {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
#lcolonq-gc-spin {
height: 60vh;
width: 60vh;
margin-top: 20vh;
margin-bottom: 20vh;
display: grid;
place-items: center;
}
#lcolonq-gc-logo {
grid-area: 1 / 1;
margin-top: 2vh;
margin-left: 8vh;
height: 100%;
image-rendering: pixelated;
}
#lcolonq-gc-spin-image {
grid-area: 1 / 1;
animation: spin 40s linear infinite;
margin-left: 2vh;
height: 250%;
width: 250%;
user-select: none;
pointer-events: none;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@media (max-width : 320px) {
#lcolonq-gc-logo {
max-width: 60vw;
max-height: 60vw;
}
#lcolonq-gc-spin-image {
height: 160%;
width: 160%;
}
}
#lcolonq-gc-explainer {
text-align: justify;
padding-left: 1rem;
padding-right: 1rem;
height: 100vh;
mask-image: linear-gradient(180deg, white 50%, transparent 95%);
overflow: hidden;
}
#lcolonq-gc-explainer h1 {
text-align: center;
font-size: 1.9rem;
}
#lcolonq-gc-relentless {
text-align: justify;
padding-left: 1rem;
padding-right: 1rem;
text-align: center;
}
#lcolonq-gc-relentless h1 {
font-size: 1.9rem;
}
#lcolonq-gc-panels {
margin-left: 1rem;
margin-right: 1rem;
margin-bottom: 1rem;
display: grid;
justify-content: center;
grid-template-columns: repeat(auto-fit, 15rem);
grid-auto-rows: minmax(10rem, auto);
gap: 1rem;
}
@media (max-width : 320px) {
#lcolonq-gc-panels {
grid-template-columns: 1fr;
}
}
.lcolonq-gc-panel {
border: solid black;
color: inherit;
text-decoration: none;
padding: 1rem;
display: none;
cursor: pointer;
}
.lcolonq-gc-panel:hover {
background-color: #eeeeee;
}
.lcolonq-gc-visible {
display: block;
}
.lcolonq-gc-panel h2 {
text-align: center;
}
.lcolonq-gc-now {
font-weight: bold;
color: red;
}
|