blob: b6aabb506c4fd71633c09677639c99f6c3e3072c (
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
|
body {
font-family: 'Lato', sans-serif;
padding: 0px;
margin: 0px;
--primary-color: #007936;
--accent-color: #eee;
--light-text-color: rgb(107, 107, 107);
}
/* Describes the styling of the one and only element with id="mainheader", note the # in front of mainheader */
#mainheader {
background-color: var(--primary-color);
font-size: 3rem;
color: white;
}
#logo-header {
display: flex;
justify-content: flex-start;
align-items: center;
}
#logo-header img {
margin-left: 30px;
}
main {
padding: 25px;
}
nav
{
height: 2rem;
line-height: 2rem;
background-color: var(--accent-color);
}
/* Describes the styling of all elements with class="parkname", note the . in front of parkname */
.parkname {
background-color: var(--primary-color);
color: white;
font-size: 2rem;
font-weight: bold;
text-transform: uppercase;
}
/* Describes the styling of all <article> elements */
article {
border: 1px solid var(--primary-color);
color: var(--light-text-color);
margin: 5px;
}
.order {
padding-top: 25px;
}
.badge {
background-color: red;
display: none;
color: white;
font-weight: bold;
width: 25px;
border-radius: 25px;
}
|