-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.15 KB
/
style.css
File metadata and controls
77 lines (66 loc) · 1.15 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f9f9f9;
color: #222;
}
header {
background-color: #d3ded3;
color: black;
padding: 1rem;
text-align: center;
}
nav a {
color: black;
margin: 0 1rem;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 2rem;
max-width: 800px;
margin: auto;
}
footer {
text-align: center;
padding: 1rem;
background-color: #d3ded3;
font-size: 0.9rem;
}
.caption {
font-size: 0.9rem;
color: #555;
margin-top: 0.25rem;
margin-bottom: 2rem;
text-align: center;
}
.caption.headline {
margin-bottom: 0.5rem; /* tighter spacing before image */
font-weight: bold;
}
.doc-image {
max-width: 300px;
width: 100%;
height: auto;
border: 1px solid #ccc;
border-radius: 6px;
display: block;
margin: 0 auto;
}
hr {
border: none;
border-top: 1px solid #ccc;
margin: 2rem 0;
}
a:link {
color: #1a611a;
text-decoration: underline;
}
a:visited {
color: #554a35
;
}