forked from Ada-C7/trek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (85 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
96
97
98
99
100
101
102
103
104
@import url('https://fonts.googleapis.com/css?family=Comfortaa|Antic|IM+Fell+English+SC|Kurale');
@import url('https://fonts.googleapis.com/css?family=Allura|La+Belle+Aurore|Nothing+You+Could+Do|Petit+Formal+Script');
* {
margin: 0;
padding: 0;
font-family: "Comfortaa";
}
body {
display: block;
position: relative;
min-height: 675px;
}
body::after {
content: "";
background: url("http://www.environmentandsociety.org/sites/default/files/styles/popup/public/wegener-expedition2-walk_0.jpg?itok=u9iamiKA") no-repeat center center;
background-size: cover;
background-attachment: fixed;
opacity: .5;
display: block;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
#header-title {
font-family: "IM Fell English SC";
}
#header-title, #errors {
text-align: center;
}
#subtitle {
font-family: "La Belle Aurore";
text-align: center;
margin-top: 100px;
}
h1 {
font-size: 4em;
}
.page-header {
font-family: "La Belle Aurore";
text-align: center;
margin-top: 20px;
}
button, p {
font-family: "Antic";
}
.hidden {
display: none;
}
.top-nav {
display: block;
text-align: center;
}
.top-nav button {
display: inline-block;
}
.filter-type {
display: inline-flex;
text-align: center;
}
.filter-form {
display: block;
text-align: center;
}
.filter-form button {
width: 175px;
margin-left: 20px;
}
.filter-form select, .filter-form input {
width: 300px;
}
#narrow-search {
margin: 25px 35px 0;
}
#content {
overflow: scroll;
min-height: 500px;
}
#attribution {
font-size: .75em;
text-align: center;
margin-bottom: 10px;
}