-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (113 loc) · 2.13 KB
/
style.css
File metadata and controls
123 lines (113 loc) · 2.13 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
margin: 0;
font-family: "Outfit", sans-serif;
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
body{
background-color:hsl(30, 54%, 90%) ;
}
.contentbox{
max-width: 600px;
margin: 95px auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
padding: 20px;
border: 1px solid hsl(0, 0%, 100%);
background-color: hsl(0, 0%, 100%);
border-radius: 20px;
}
.contentbox img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.rose-box{
display: grid;
gap: 1rem;
padding: 1.5rem 2rem;
border-radius: 10px;
background-color: hsl(330, 100%, 98%);
}
.rose-box ul{
padding: .0 1rem;
display: grid;
gap: .5rem;
}
.rose-box ul li{
color: hsl(30, 10%, 34%);
padding: 0.25rem 1rem;
font-weight: 400;
}
.rose-box b{
color: hsl(24, 5%, 18%);
}
h1{
font-family: "Young Serif", serif;
font-size: 2.5rem;
color: hsl(24, 5%, 18%);
font-weight: 400;
}
h2{
color: hsl(14, 45%, 36%);
}
h3{
color:hsl(332, 51%, 32%) ;
}
h4{
color: hsl(332, 51%, 32%);
}
p{
font-family: "Outfit", sans-serif;
font-size: 16px;
color: hsl(30, 10%, 34%);
}
#heading{
font-size: 900;
font-weight: 600px;
}
.ingredient{
border-bottom: 1px solid hsl(30, 18%, 87%);
}
.ingredient ul{
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
color: hsl(30, 10%, 34%);
font-weight: 400;
}
.instructions{
border-bottom: 1px solid hsl( 30, 18%, 87%);
}
.instructions ol{
padding:1.5rem ;
display: flex;
flex-direction: column;
gap: 1rem;
color: hsl(30, 10%, 34%);
font-weight: 400;
}
.instructions ol li::marker{
color: hsl(14, 45%, 36%);
font-weight: 700;
}
.nutrition{
display: flex;
flex-direction: column;
gap: 1rem;
}
.nutrition table tr td{
border-bottom: 1px solid hsl(30, 18%, 87%);
padding: 1rem 1.5rem;
}
.nutrition table tr td:last-child{
color: hsl(14, 45%, 36%);
font-weight: 700;
}
.nutrition table tr:last-child td{
border-bottom: none;
}