blob: 712f8a165e9051f9dfc8931969ab3905db6bc72e (
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
28
29
|
.section {
background-color: var(--bg1);
}
html {
background: url("/assets/bg.jpg");
background-attachment: fixed;
background-size: cover;
image-rendering: pixelated;
}
/* Links */
a {
color: var(--blue);
}
a:visited {
color: var(--purple);
}
#weird-fucking-header-container {
display: inline-grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
.whatever {
grid-area: 1 / 1 / 2 / 2;
}
|