-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (61 loc) · 989 Bytes
/
styles.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
font-family: 'Roboto Serif', sans-serif;
}
body {
margin: 0;
padding: 0;
}
#header-section {
padding-top: 47.5vh;
padding-bottom: 47.5vh;
text-align: center;
}
.btn {
transition: background-color 1s;
background-color: #ADE25D;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.btn:hover {
background-color: #CFFFB3;
}
.body-section{
background-color: #CFFFB3;
padding: 2rem;
padding-top: 32vh;
padding-bottom: 32vh;
}
.hornbill-sightings {
padding-top: 20vh;
padding-bottom: 20vh;
text-align: center;
}
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width:600px) {
.column {
width: 100%;
}
}
#map-section {
padding-top: 15vh;
text-align: center;
}
#map {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}