blob: 9ae6d1ebfcbb2db8b2bb8bf52bed4e49081f5b77 (
plain) (
blame)
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
|
.section {
background-color: var(--bg1);
}
html {
background: url("/assets/bg.jpg");
background-attachment: fixed;
background-size: cover;
image-rendering: pixelated;
}
#weird-fucking-header-container {
display: inline-grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
.whatever {
grid-area: 1 / 1 / 2 / 2;
}
#badge-grid {
display: inline-grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 4px;
}
|