-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (90 loc) · 1.6 KB
/
styles.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
line-height: 2.0rem;
padding: 25px;
background-color: rgb(250,235,215);
}
article {
margin: 40px auto;
padding: 40px;
max-width: 800px;
background: rgb(255,255,240);
border-radius: 15px;
border: 3px solid rgb(222,184,135);
}
h1, h2, h3 {
color: rgb(222,184,135);
text-align: center;
}
h2, h3 {
margin-top: 20px;
padding-top: 20px;
border-top: 2px solid #DEB887;
font-weight: 500;
}
h4 {
color: #6f7275;
}
#header p {
color: rgb(105,105,105);
text-align: center;
}
header h1 {
font-weight: bolder;
}
header h3 {
font-style: italic;
font-weight: 400;
}
li, p {
color: rgb(105,105,105);
}
img {
max-width: 50%;
height: auto;
border-radius: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.recipe-img {
max-width: 100%;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.ingredients ul, .method ol {
margin: 25px 0;
}
.ingredients li, .method li {
margin-bottom: 10px;
}
.ingredients li {
list-style-type: square;
}
.ingredients li::marker {
color: burlywood;
}
a {
text-decoration: none;
color: #DEB887;
}
a:hover {
text-decoration: underline;
}
footer a {
color: #CD853F;
}
footer {
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 2px solid #DEB887;
}