-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (59 loc) · 847 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
68
69
70
71
72
* {
margin: 0;
padding: 0;
}
:root {
font-family: "Alice", serif;
line-height: 150%;
color: #573a37;
}
body {
background-image: url(assets/bg-image.jpg);
background-size: cover;
background-color: #573824;
background-blend-mode: multiply;
}
#page {
box-sizing: border-box;
width: 800px;
padding: 24px;
background-color: #f0e8c2;
border-radius: 24px;
margin: 48px auto 28px;
}
img {
border-radius: 16px;
}
main {
padding: 24px;
}
section + section {
margin-top: 24px;
}
#about p + p {
margin-top: 12px;
}
h1 {
line-height: 140%;
margin-bottom: 4px;
}
h2 {
font-size: 24px;
}
h1,
h2 {
color: #291b1a;
margin-bottom: 4px;
line-height: 150%;
}
ul {
padding-left: 24px;
}
footer {
color: #f0e8c2;
text-align: center;
padding-bottom: 48px;
}
footer img {
vertical-align: middle;
}