-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
169 lines (142 loc) · 3.3 KB
/
main.css
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
:root {
--emoji-scale: 1em;
}
@font-face {
font-family: 'Agave';
/* font-weight: bold; */
src: url("Agave-Regular.ttf");
}
body {
/* width: 100%; */
margin: 0;
background-color: #111;
color: #0FD903;
font-family: 'Agave';
/* min-height: calc(100% - 1em); */
height: 100%;
background: radial-gradient(circle, #111 50%, black 150%);
display: flex;
flex-direction: column;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
/* min-height: 100%; */
/* justify-content: space-around; */
justify-content: center;
gap: 1.5em;
}
.imgcontainer {
font-size: 10vmin;
height: 5ch;
aspect-ratio: 127 / 180;
/* margin-bottom: 1rem; */
transition: filter .5s ease-in-out, transform .5s ease-in-out;
}
.imgcontainer:hover {
transform: scale(1.05);
}
.imgcontainer:hover>img:last-child {
filter: blur(.5em);
/* opacity: .58; */
}
.imgcontainer>img {
position: absolute;
font-size: 10vmin;
height: 5ch;
}
.imgcontainer>img:last-child {
filter: blur(.25em);
transition: filter .5s ease-in-out, transform .5s ease-in-out;
/* opacity: .58; */
}
h1 {
font-size: 10vmin;
margin: 0;
filter: drop-shadow(0 0 0.5rem #0ed90395);
transition: filter .5s ease-in-out, transform .5s ease-in-out;
}
h1:hover {
transform: scale(1.05);
filter: drop-shadow(0 0 1rem #0ed90395);
}
@keyframes typing {
0% { width: 0ch; overflow: clip; }
99% { width: 28ch; overflow: clip;}
100% { width: 28ch }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #0FD903; }
}
h3 {
font-size: 3vmin;
margin: 0;
margin-top: -.5em;
padding: 1em;
margin: -1em;
width: 28ch;
/* filter: drop-shadow(0 0 0.5rem #0ed90395); */
transition: filter .5s ease-in-out, transform .5s ease-in-out;
/* font-style: italic; */
animation: typing 4s steps(28, end);;/*, blink-caret 1s step-end infinite;*/
white-space: nowrap;
/* border-right: .15em solid #0FD903; */
}
h3:hover {
transform: scale(1.05);
}
h3>.text {
filter: drop-shadow(0 0 0.5rem #0ed90395);
}
.container a {
color: #0FD903;
display: flex;
white-space: nowrap;
font-size: 5vmin;
filter: drop-shadow(0 0 0.25rem #0ed90395);
fill: #0FD903;
transition: filter .5s ease-in-out, transform .5s ease-in-out;
}
.container a:hover {
/* color: #f00; */
/* fill: #f00; */
transform: scale(1.05);
filter: drop-shadow(0 0 1rem #0ed90395);
}
.discord {
/* width: 10vmin; */
/* filter: drop-shadow(0 0 0.5rem #0ed90395); */
display: inline-block;
height: 1em;
width: 2.5em;
transform: scale(1.5);
}
.emojicontainer>*:first-child {
filter: blur(.1em);
opacity: .58;
}
.emojicontainer>*:last-child{
margin-right: calc(-1 * var(--emoji-scale, 1.4em)) !important;
transform: translateX(-100%);
/* filter: blur(.25em); */
/* position: relatives; */
}
#qc-webring-footer {
display: flex;
flex-direction: row;
height: 10vmin;
justify-content: space-between;
padding: 1vmin;
}
#qc-webring-footer a {
transition: transform .5s ease-in-out;
}
#qc-webring-footer a:hover {
transform: scale(1.05);
}
#qc-webring-footer img {
height: 10vmin;
}