-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (63 loc) · 1002 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
73
74
75
* {
margin: 0px;
padding: 0px;
}
:root{
font-family: "Alice", serif;
line-height: 150%;
text-align: justify;
font-size: 16px;
color: #573A37;
}
body {
background-image: url(assets/Página\ de\ receita.jpg);
background-size: cover;
}
#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;
}
#about p + p {
margin-top: 12px;
}
h1 {
line-height: 140%;
font-size: 40px;
color: #291B1A;
margin-bottom: 4px;
}
h2 {
font-size: 24px;
color: #291B1A;
}
#ingredients {
margin-top: 24px;
}
h1, h2 {
margin-bottom: 4px;
line-height: 150%; }
#preparation {
margin-top: 24px;
}
ul {
padding-left: 24px;
}
footer {
padding-bottom: 48px;
text-align: center;
color: #F0E8C2;
font-size: 16px;
}
footer img {
vertical-align: middle;
}