-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (81 loc) · 1.54 KB
/
styles.css
File metadata and controls
95 lines (81 loc) · 1.54 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Trebuchet MS";
}
body {
background-image: url("https://wallpapers.com/images/hd/pink-grid-ysbeks1u8deoifh2.jpg");
background-size: cover;
}
h1 {
font-size: 36px;
text-align: center;
margin-bottom: 20px;
padding: 12px;
background-color: #FC2D59;
}
h2 {
font-size: 25px;
text-align: center;
padding: 10px;
}
ul {
padding: 20px;
}
li {
margin: 0px 12px;
}
p {
text-align: center;
text-wrap: pretty;
}
.desc {
width: 350px;
height: fit-content;
padding: 20px;
margin: 10px;
}
div {
background-color: #FADADD;
border-radius: 5%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
section {
display: flex;
justify-content: center;
align-items: center;
}
.ingredients {
background-color: #FADADD;
margin: 12px 0px;
width: 50vw;
height: fit-content;
text-align: center;
}
.hide li {
list-style-type: none;
}
.steps {
background-color: #FADADD;
padding: 20px;
margin: 12px 0;
width: 50vw;
height: fit-content;
}
img {
border-radius: 5%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button,
.recipes {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #FADADD;
border-radius: 0;
margin: 10px;
border-radius: 5%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}