-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
43 lines (38 loc) · 1.04 KB
/
style.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
* {
box-sizing: border-box;
}
html {
background-color: var(--bg-primary);
color: var(--text-primary);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.5;
}
body {
padding: 2rem 4rem;
}
/* default to 900px for all content types */
*[class^="content-"] {
max-width: 900px;
margin: auto;
}
.content-txt { max-width: 1200px; }
/* --------------------------------------------------------------------------
* DIRECTORY LISTS ---------------------------------------------------------- */
ul.dir-list { padding: 0 }
li[class^='dir-list-'] {
list-style: none;
}
li[class^='dir-list-'] > a {
display: inline-flex;
align-items: center;
padding: 0.05rem 0;
color: var(--text-primary);
}
li[class^='dir-list-'] > a:hover {
color: var(--text-link);
}
li[class^='dir-list-'] > a > svg {
margin-right: 0.3rem;
}
.icon-directory { fill: var(--icon-directory); }
.icon-file { fill: var(--icon-file); }