-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (53 loc) · 933 Bytes
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
body {
background-color: PapayaWhip;
color: #808080;
font-family: monospace;
font-size: 16px;
}
article {
width: 80ch;
margin: auto;
}
#page-title {
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”,
“Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”,
sans-serif;
text-decoration: underline overline;
}
article > label {
display: inline-block;
width: 20ch;
height: 1.5em;
}
label {
color: DodgerBlue;
}
p + label {
margin-top: 3em;
}
a,
a:visited {
color: LightCoral;
}
a:hover {
color: DarkRed;
}
a.right-aligned-link,
a.left-aligned-link {
display: block;
margin: 2em 0;
padding: 4px;
background-color: LightCoral;
color: white;
font-weight: bold;
text-transform: uppercase;
}
a.right-aligned-link {
text-align: right;
}
a.left-aligned-link {
text-align: left;
}
hr {
margin: 2em 0;
}