forked from w-greenwood/utter-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (75 loc) · 1.2 KB
/
style.css
File metadata and controls
89 lines (75 loc) · 1.2 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
body {
font-family: sans-serif;
margin: 0;
--utter-light: #cc003d;
--utter-medium: #bd003a;
--utter-dark: #a8002c;
}
header {
color: white;
background-color: var(--utter-medium);
padding: 10px 50px 10px 50px;
}
nav > a {
color: white;
background-color: var(--utter-dark);
padding: 10px;
}
nav > a:hover {
background-color: var(--utter-light);
}
main {
width: min(900px, 80%);
margin: auto;
margin-bottom: 100px;
}
summary {
color: white;
background-color: var(--utter-medium);
margin: 2px;
padding: 2px 5px 2px 5px;
}
footer {
color: lightgray;
background-color: #222;
padding: 10px 50px 10px 50px;
}
footer > p > a {
color: white;
}
img {
width: 90%;
padding: 5px;
}
dt {
font-weight: bold;
margin-top: 15px;
margin-bottom: 5px;
}
dd {
padding-left: 10px;
border-left: 3px solid gray;
}
dd > p {
margin: 0
}
details > details {
margin-left: 3em;
}
mark {
font-weight: bold;
color: var(--utter-light);
background-color: transparent;
}
dfn {
display: inline-block;
font-style: normal;
font-weight: bold;
width: fit-content;
padding: 0px 2px 0px 2px;
aspect-ratio: 1 / 1;
color: var(--utter-dark);
border: 2px solid var(--utter-dark);
border-radius: 100%;
margin: 0;
}