blob: 579e18d621238b3632ec335fe8edd3b7f9d0023a (
plain)
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
130
131
|
html {
background: black;
font-family: 'Open Sans', sans-serif;
height: 100%;
}
body {
margin-left: 10%;
max-width: 80%;
min-width: 70%;
height: 100%;
}
header {
text-align: center;
}
main {
min-height: 100%;
}
.top-gap {
padding-top: 3%;
}
.bottom-gap {
padding-bottom: 3%;
}
.wrapper-space,
.wrapper-centered,
.flex-stack {
display: flex;
}
.wrapper-space {
justify-content: space-between;
}
.wrapper-centered {
justify-content: center;
}
.align-center {
align-items: center;
}
.flex-stack {
flex-direction: column;
}
main, #headerwrapper {
background-color: #fafafa;
color: black;
}
#headerwrapper {
padding-top: 2%;
text-align: center;
padding-bottom: 2%;
}
.text-centered {
text-align: center;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
list-style-type: none;
}
nav a {
text-decoration: none;
display: block;
padding: 0px 6px 5px 6px;
color: white;
}
footer p {
display: block;
color: white;
margin: 7px;
}
.lists {
margin-left: 2%;
flex: 1;
}
img {
max-width: 100%;
}
.img-wrapper {
margin-right: 2%;
margin-left: 2%;
flex: 0.5;
}
.img-right {
text-align: right;
}
.recipe-list {
float: left;
padding-left: 38%;
list-style-type: none;
}
.recipe-item {
padding: 5px;
font-size: 26px;
}
div.flex-stack.top-gap {
background-color: #a0a0a0;
}
.btn {
margin: 50px;
width: 200px;
height: 200px;
background-color: aliceblue;
outline: none
}
|