-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
126 lines (124 loc) · 2.23 KB
/
index.css
File metadata and controls
126 lines (124 loc) · 2.23 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
124
125
126
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0px;
padding: 0px;
font-family: "Poppins";
}
body{
width: 100%;
height: 100vh;
min-width: 200px;
}
.main{
min-width: 200px;
width: 100%;
height: 200vh;
display: flex;
justify-content: center;
background-color: rgb(227, 202, 168);
}
.main-content{
background-color: white;
width: 450px;
min-width: 200px;
padding: 20px 20px;
height: 1100px;
display: flex;
flex-direction: column;
border-radius: 8px;
margin: 20px;
}
img{
border-radius: 7px;
margin-bottom: 10px;
}
h1{
font-family: serif;
font-size: 30px;
margin-bottom: 10px;
}
p{
font-size: 9.5px;
margin-bottom: 10px;
}
.prepare-time{
background-color: rgb(252, 237, 252);
font-size: 10px;
min-width: 10px;
padding:15px 0px 12px 20px;
border-radius: 5px;
/* margin-left: 10px; */
}
.prepare-time h4{
margin-bottom: 10px;
color:rgb(77, 48, 77) ;
}
.prepare-time ul{
margin-left: 20px;
color: black;
}
.prepare-time li{
margin-bottom: 5px;
font-weight: 400;
}
.prepare-time ul li::marker{
color: rgb(77, 48, 77);
}
label{
font-weight: 700;
}
h2{
font-family: serif;
color: rgb(124, 71, 7);
padding: 20px 0px;
}
.ingredient ul {
margin-left: 20px;
color: black;
font-size: 10px;
padding-bottom: 20px;
}
.ingredient li{
margin-bottom: 5px;
font-weight: 400;
}
.ingredient li::marker{
font-weight: 700;
color: rgb(124, 71, 7);
}
.instruction ol{
margin-left: 20px;
color: black;
font-size: 10px;
padding-bottom: 20px;
}
.instruction li{
margin-bottom: 5px;
font-weight: 400;
}
.instruction li::marker{
color: rgb(124, 71, 7);
font-weight: 700;
}
.Nutrition ul{
margin-left: 20px;
color: black;
font-size: 10.5px;
padding-bottom: 20px;
list-style-type: none;
}
.Nutrition li{
display: flex;
gap: 60px;
padding: 5px 0px;
}
.number{
font-weight: 700;
color: rgb(124, 71, 7);
width: 100px;
display: flex;
justify-content: end;
}
hr{
background-color: rgb(175, 174, 174);
}