-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (57 loc) · 788 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
:root{
font-family: 'Alice', serif;
line-height: 150%;
color: #573a37;
}
* {
margin: 0;
padding: 0;
}
body {
background-image: url(assets/bg.png);
background-size: cover;
}
img {
border-radius: 16px;
}
#page{
box-sizing: border-box;
width: 800px;
padding: 24px;
background-color: #F0E8C2;
border-radius:24px;
margin: 48px auto 28px;
}
main {
padding: 24px;
}
section + section {
margin-top:24px;
}
#about p+p {
margin-top: 12px;
}
h1 {
font-size: 40px;
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;
}