-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstyle.css
67 lines (56 loc) · 761 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
65
66
67
html {
max-width: 100ch;
padding: 1em 1em;
margin: auto;
line-height: 1.75;
font-size: 1.25em;
font-family: sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0.5em 0 1em;
}
p,
ul,
ol {
margin-bottom: 2em;
color: #1d1d1d;
}
/* Navbar */
.navbar {
background-color: #020617;
padding: 5px;
border-radius: 10px;
}
.navbar menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.navbar li {
margin-right: 32px;
}
.navbar a {
color: #ffffff;
text-decoration: none;
}
.navbar a:hover {
text-decoration: underline;
}
/* Code block */
pre {
background-color: #f1f5f9;
padding: 16px;
border-radius: 10px;
overflow-x: auto;
}
code {
color: #030712;
font-family: monospace;
}