-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (107 loc) · 2.08 KB
/
Copy pathstyle.css
File metadata and controls
129 lines (107 loc) · 2.08 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
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');
:root {
--white: #ffffff;
--rose-white: #fff5fa;
--eggshell: #f3e6d8;
--light-grey: #e4ded8;
--wenge-brown: #5f574e;
--dark-charcoal: #302d2c;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Outfit, Young-serif;
color: var(--wenge-brown);
}
body {
background-color: var(--eggshell);
}
.mainframe {
margin: auto;
display: flex;
justify-content: center;
/* align-items: center; */
flex-direction: column;
width: 50%;
padding: 15px;
margin-top: 7rem;
margin-bottom: 7rem;
background-color: var(--rose-white);
border-radius: 12px;
box-shadow: 8px 8px 17px rgba(0, 0, 0, 0.244);
}
#omelette-image {
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
width: 100%;
}
#omelette-image img {
max-width: 100%;
max-height: 100%;
border-radius: inherit;
}
.preparation {
padding-left: 20px;
}
.preparation h4 {
color: purple;
}
h2 {
color: #a12f2f;
}
.preparation #Preparation-time {
list-style-type: none;
}
.preparation #Preparation-time ul {
padding-left: 20px;
list-style: disc;
}
#Ingredients-list {
list-style-type: none;
}
#Ingredients-list ul {
padding-left: 20px;
list-style-type: disc;
}
.instructions {
list-style-type: decimal;
/* padding-left: 20px; */
}
.instruction b {
color: #a12f2f;
}
#instructions-heading {
list-style-type: none;
}
#instructions-heading .instruction {
margin-left: 20px;
padding-left: 10px;
}
/* Footer */
.attribution {
font-size: 11px;
text-align: center;
color: black;
}
.attribution a {
color: hsl(228, 45%, 44%);
text-decoration: underlined;
}
@media only screen and (max-width: 500px) {
.mainframe {
width: 60%;
}
}
@media only screen and (max-width: 400px) {
.mainframe {
width: 80%;
}
}
@media only screen and (max-width: 250px) {
.mainframe {
width: 100%;
}
}