Newer
Older
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
body * {
box-sizing: border-box;
color: #35393c;
line-height: 1.3em;
}
body ul {
margin: 0;
padding: 0;
list-style-type: none;
}
body a {
color: #4baabb;
text-decoration: none;
}
body a:hover {
color: #72e3f0;
}
body blue {
color: #4baabb;
}
body red {
color: #9c3030;
}
body green {
color: #368736;
}
body emoji {
font-style: initial;
font-size: 25px;
}
body .bg-blue {
background-color: #4baabb;
color: white;
}
body .bg-dark {
background-color: #3c4144;
color: #aabbc8;
}
body #seo-title {
visibility: hidden;
}
body img.pixelated {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
main {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
main .warning-banner {
background: url("/assets/images/wallpaper_warning.svg");
width: 100%;
height: 40px;
padding: 20px 10%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
main .warning-banner strong {
font-size: 18px;
color: #1c3db2;
}
main .image-carousel {
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
background-color: black;
position: relative;
}
main .image-carousel img {
position: absolute;
max-width: 100%;
max-height: 400px;
}
main .image-carousel .carousel-bullets {
position: absolute;
bottom: 0;
padding: 20px;
display: flex;
gap: 10px;
}
main .image-carousel .carousel-bullets .bullet {
cursor: pointer;
width: 8px;
height: 8px;
background-color: #6b7880;
border-radius: 100%;
box-shadow: 0 0 3px black;
}
main .image-carousel .carousel-bullets .bullet.active {
background-color: #d4d9dd;
}
@media screen and (max-width: 900px) {
main .image-carousel img {
max-height: 100%;
}
main .image-carousel .carousel-bullets {
gap: 30px;
}
main .image-carousel .carousel-bullets .bullet {
width: 12px;
height: 12px;
}
}
main header {
width: 100%;
background-color: white;
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 10;
}
main header nav {
display: flex;
align-items: center;
height: 60px;
}
main header nav .home {
margin: 0 10px;
}
main header nav .home a {
display: flex;
align-items: center;
gap: 10px;
}
main header nav .home a img {
height: 40px;
width: auto;
}
main header nav .home a img.logo-text {
width: 120px;
height: auto;
}
main header nav ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
height: 100%;
}
main header nav ul li {
position: relative;
}
main header nav ul li a {
display: flex;
align-items: center;
height: 100%;
padding: 10px 20px;
color: #96a5ae;
font-weight: 800;
text-decoration: none;
}
main header nav ul li .submenu {
visibility: hidden;
overflow: hidden;
position: absolute;
height: auto;
max-height: 0;
transition: max-height 0.6s;
top: 100%;
left: 50%;
flex-direction: column;
background-color: white;
white-space: nowrap;
}
main header nav ul li.active a {
color: #3c4144;
border-bottom: 3px solid;
}
main header nav ul li:hover a {
color: #3c4144;
}
main header nav ul li:hover .submenu {
visibility: unset;
max-height: 1000px;
}
main header nav ul li:hover .submenu a {
color: #96a5ae;
border: none;
}
main header nav ul li:hover .submenu li:hover a {
color: #3c4144;
}
main header nav .burger {
display: none;
}
@media screen and (max-width: 560px) {
main header nav {
justify-content: space-between;
Loading
Loading full blame...