-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (79 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (79 loc) · 1.29 KB
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
:root {
--font: monospace;
--size: 16px;
}
body.light {
--black: black;
--red: red;
--green: green;
--blue: blue;
--violet: violet;
--teal: teal;
--while: white;
--bg: var(--white);
--fg: var(--black);
}
body.dark {
--black: #282C34;
--red: #E06C75;
--green: #98C379;
--yellow: #E5C07B;
--blue: #61AFEF;
--violet: #C678DD;
--teal: #56B6C2;
--white: #ABB2BF;
--bg: #282C34;
--fg: #abb2bf;
}
body {
background-color: var(--bg);
color: var(--fg);
font-family: var(--font);
font-size: var(--size);
}
main {
width: 80ch;
margin: auto;
}
main > * + * {
margin-top: 1ch;
border-top: 1px dashed var(--fg);
padding-top: 1ch;
}
p {
margin: 0;
}
a {
color: var(--blue);
text-decoration: none;
}
a:hover {
color: var(--white);
text-decoration: underline;
}
header {
display: flex;
justify-content: space-between;
}
header ul {
list-style-type: none;
margin: 0;
padding: 0;
}
header ul li {
display: inline;
}
header ul li + li {
margin-left: 1ch;
}
#projects b {
display: block;
margin-bottom: 1ch;
}
#projects .project + .project {
margin-top: 1ch;
}
#projects .project .description {
display: inline;
font-style: italic;
}