-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
95 lines (93 loc) · 1.6 KB
/
style.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@import url('https://fonts.googleapis.com/css?family=PT+Sans');
body {
width: 100%;
min-width: 700px;
font-family: 'PT Sans', sans-serif;
box-sizing: border-box;
font-size: 13pt;
max-width: 100vw;
margin: 0;
}
a {
color: #689F38;
text-decoration: none;
}
a:hover {
color: #8BC34A;
text-decoration: underline;
}
a:visited {
color: #33691E;
}
nav {
height: 70px;
width: 100%;
max-width: 960px;
display: flex;
justify-content: space-between;
margin: 0 auto;
padding: 20px 30px 30px 30px;
}
h1, h2, h3, h4 {
margin: 0 0 1em 0;
}
.flex-row {
display: flex;
flex-flow: row wrap;
}
.map-container {
margin: 0 auto;
}
#SidePanel {
display: flex;
min-width: 579px;
flex: 1;
}
.sitename {
font-size: 40px;
line-height: 70px;
margin: 0;
}
.sitename a, .sitename a:visited {
color: black;
text-decoration: none;
}
.sitename a:hover {
color: black;
text-decoration: underline;
}
.nav-options {
display: flex;
flex-flow: row nowrap;
align-items: center;
}
.button {
border-radius: 3px;
padding: 10px;
box-shadow: 0 6px 1px 0 gray;
border: 1px solid gray;
color: black;
font-size: 20px;
text-decoration: none;
display: flex;
}
.nav-options a:hover {
box-shadow: 0 4px 1px 0 gray;
margin-top: 3px;
color: black;
text-decoration: none;
}
.nav-options a:active {
box-shadow: 0 0 1px 0 gray;
margin-top: 8px;
color: black;
}
.nav-options a:visited {
color: black;
}
#about-page-text-wrapper {
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0 30px;
}