-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.css
80 lines (66 loc) · 1.12 KB
/
index.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
@font-face {
font-family: "JetBrains Mono";
src: url(/JetBrainsMono-Regular.ttf) format("truetype");
}
* {
margin: 0;
padding: 0;
}
body {
background-color: #111111;
color: #DDDDDD;
font-family: "JetBrains Mono";
font-size: 1.15rem;
display: flex;
flex-direction: column;
height: 100%;
max-width: 80ch;
padding-bottom: 2em;
margin: 1em auto 1em;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
a:link {
color: #7EB6E1;
}
a:visited {
color: #5075BF;
}
code {
background-color: #333333;
padding: 1px;
border-radius: 3px;
}
pre:has(code) code {
display: block;
}
ul {
list-style-position: inside;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
li {
margin-left: 1.5em;
}
li:not(:last-child) {
margin-bottom: 0.5em;
}
#logo-and-name-and-shit {
display: flex;
flex-direction: column;
align-items: center;
}
.webring-member {
display: inline-flex;
flex-direction: row;
align-items: center;
}
.webring-member:has(a) a {
display: grid;
}
.config-image {
margin-left: 0.25em;
max-height: 1.25em;
}