-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (77 loc) · 1.33 KB
/
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Arial, Tahoma, sans-serif;
background-color: rgba(255, 250, 200, 0.5);
}
.header {
background-color: rgb(236, 226, 172);
width: 800px;
padding: 40px;
margin: 30px auto;
text-align: center;
}
.header .main-heading {
font-size: 50px;
margin-bottom: 15px;
}
.header .sub-heading {
font-style: italic;
font-size: 25px;
}
.sec-heading {
font-size: 25px;
text-align: center;
margin-bottom: 20px;
}
.links {
background-color: rgba(255, 255, 50, 0.3);
width: 800px;
margin: 30px auto;
padding: 40px;
font-size: 18px;
font-weight: 700;
}
.links .links-heading {
text-align: center;
font-size: 20px;
margin-bottom: 10px;
}
.links .links-list .link {
display: block;
text-align: center;
margin-bottom: 2px;
}
.links .links-list .link a {
color: hsl(280, 50%, 50%);
}
.main-img-recipe {
width: auto;
height: 500px;
display: block;
margin: 30px auto;
}
.description, .ingredients, .steps {
background-color: rgba(255, 255, 50, 0.3);
padding: 50px;
margin: 30px auto;
padding: 30px;
width: 800px;
}
.lists {
margin-left: 275px;
}
.ingredients .lists {
margin-right: 200px;
}
.steps .lists {
margin: 0 100px 0 200px;
}
.diners {
font-style: italic;
text-align: center;
margin-bottom: 30px;
}