-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecipe.css
56 lines (47 loc) · 993 Bytes
/
Recipe.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
ol {
/* border: red solid; */
font-size: 20px;
display: flex;
flex-direction: column;
gap: 50px;
/* color: white; */
/* font-weight: 900; */
}
* {
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
font-family: "Signika Negative", sans-serif;
}
#container {
padding: 30px;
}
img {
width: 400px;
height: 400px;
border-radius: 10px;
}
#container > div > div:nth-child(2) {
display: flex;
gap:10px
}
#container > div > div:nth-child(2) > p {
display: flex;
align-items: center;
height: 20px;
margin-top: -10px;
box-sizing: border-box;
padding-right: 10px;
border-right: 1px red solid;
}
iframe {
height: 400px;
width: 600px;
border: none;
border-radius: 10px;
}
#container > div > div:nth-child(3) {
display: flex;
justify-content: center;
align-items: center;
gap: 100px;
}