A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 global.css

View raw Download
text/plain • 1.16 kiB
ASCII text
        
            
1
body,
2
html {
3
margin: 0;
4
width: 100vw;
5
}
6
7
body {
8
background-color: #0c0c10;
9
color: #fff;
10
}
11
12
:any-link {
13
color: #9a9af0;
14
}
15
16
:any-link:visited {
17
color: #a99af0;
18
}
19
20
:any-link:active {
21
color: #f09a9a;
22
}
23
24
main {
25
padding: 0 8px;
26
}
27
28
.breadcrumbs {
29
list-style: none;
30
padding: 16px 8px 0;
31
margin: 0;
32
}
33
34
.breadcrumbs li {
35
display: inline-block;
36
}
37
38
.breadcrumbs li + li::before {
39
content: "\0000BB";
40
}
41
42
body > header {
43
display: flex;
44
padding: 8px;
45
align-items: center;
46
background-color: #ffffff05;
47
}
48
49
body > header :any-link {
50
color: #f1f1f1 !important;
51
}
52
53
body > header h2 {
54
flex: 1;
55
font-size: large;
56
margin: 0;
57
}
58
59
body > header nav {
60
font-size: large;
61
}
62
63
tr > :not(:last-child) {
64
padding-right: 15px;
65
}
66
67
body > footer {
68
display: flex;
69
align-items: first baseline;
70
margin: 8px;
71
margin-top: 12px;
72
width: calc(100vw - 16px);
73
padding-top: 3px;
74
border-top: 1px currentColor solid;
75
}
76
77
.footer-link-list-holder {
78
flex: 1;
79
}
80
81
.footer-link-list {
82
list-style: none;
83
padding-left: 0;
84
margin: 0;
85
}
86
87
.footer-link-list-label {
88
font-weight: 900;
89
font-size: 1.05rem;
90
}