-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (59 loc) · 1019 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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: bisque;
color: #333;
margin: 0;
padding: 0;
font-size: 30px;
}
header{
background-color: #FBD288;
color: maroon;
padding: 20px 0;
text-align: center;
}
header h1{
margin: 0;
}
main{
width: 80%;
margin: 20px auto;
}
.introduction {
text-align: center;
}
.introduction p{
text-align: left;
padding-left: 50px;
}
.introduction img{
text-align: center;
max-width: 100%;
height: auto;
margin: 20px 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.introduction,
.ingredients,
.instructions {
background-color: #f8f8f8;
margin-bottom: 20px;
padding: 15px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ingredients h2,
.instructions h2{
color: saddlebrown;
}
ul , ol {
margin-left: 30px;
}
footer{
text-align: center;
background-color: #FBD288;
color: maroon;
padding: 10px 0;
position: relative;
bottom: 0;
width: 100%;
}