-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.css
63 lines (60 loc) · 913 Bytes
/
blog.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
body {
font-family: sans-serif, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #101010;
color: white;
max-width: 712px;
margin: 0 auto;
padding: 16px;
}
header {
display: flex;
justify-content: flex-start;
align-items: center;
line-height: 1;
gap: 16px;
margin-bottom: 24px;
}
h1 {
font-size: 24px;
line-height: 0;
}
a {
color: blue;
font-style: italic;
text-decoration: none;
transition: all 1s ease-in;
}
a:hover {
text-decoration: underline;
}
section {
line-height: 1.4;
margin: 24px 0;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 0.5rem 0;
}
ul li span {
color: blue;
font-weight: bold;
}
p {
margin-bottom: 1rem;
}
/* for code snippets */
code {
display: block;
background-color: #f4f4f4;
padding: 1rem;
border-radius: 5px;
margin-bottom: 1rem;
font-family: monospace;
}