-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (71 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (71 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
background: #fff;
color: #000;
margin: 0;
padding: 0;
}
header {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: flex-start;
padding: 32px 40px;
margin-bottom: 48px;
}
nav {
display: flex;
flex-direction: row;
gap: 24px;
}
nav a {
text-decoration: none;
color: #000;
font-size: 16px;
}
nav a:hover {
text-decoration: underline;
}
nav a.active {
text-decoration: underline;
}
.site-name {
font-weight: bold;
font-size: 16px;
text-decoration: none;
color: #000;
}
main {
max-width: 540px;
padding: 0 40px 40px;
}
main p {
line-height: 1.6;
margin-bottom: 12px;
}
main h2 {
font-size: 16px;
font-weight: bold;
margin-bottom: 12px;
margin-top: 24px;
}
main ul {
list-style: none;
padding: 0;
}
main ul li {
margin-bottom: 16px;
line-height: 1.6;
}
main a {
color: #000;
}
main a:hover {
text-decoration: none;
}