forked from FIRSTMap/firstmap.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (125 loc) · 2.43 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxIIzIXKMny.woff2) format('woff2');
unicode-range: U+0000-00FF;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
#map { height: 100%; }
body {
font-family: 'Roboto', sans-serif;
font-weight: 100;
background-color: #173340;
color: #333;
font-size: 16px;
}
h3 {
font-size: 22px;
font-weight: 400;
text-align: center;
margin-top: 10px;
}
ul {
margin-top: 10px;
list-style-type: none;
}
.share_icon {
display: inline-block;
height: 15px;
width: 17px;
background: url('img/share.svg') no-repeat center;
margin-left: 8px;
margin-bottom: 2px;
cursor: pointer;
}
a { color: inherit; }
a:hover { text-decoration: none; }
#toggles {
position: fixed;
top: 10px;
right: 13px;
height: 40px;
}
#toggles div {
height: 25px;
width: 25px;
display: inline-block;
background-color: white;
margin-left: 10px;
margin-bottom: 10px;
text-align: center;
padding-top: 3px;
cursor: pointer;
}
#fullscreen-controls {
background: white url('img/fullscreen.svg') no-repeat center;
background-size: 60%;
}
.fullscreen #fullscreen-controls {
background: white url('img/exit-fullscreen.svg') no-repeat center;
background-size: 70%;
}
#about {
position: fixed;
top: 44px;
right: 0;
width: 500px;
max-width: 100vw;
background: white;
text-align: center;
display: none;
}
#about #toggle-logos > div {
display: inline-block;
margin-top: 15px;
margin-left: auto;
margin-right: auto;
padding: 6px;
color: #BBB;
font-weight: 400;
border: 1px solid #BBB;
border-radius: 10px;
cursor: pointer;
}
#toggle-logos.off #logos-on, #toggle-logos.on #logos-off {
display:none;
}
#toggle-logos .main {
font-size: 0.9em;
}
#toggle-logos .sub {
font-size: 0.75em;
}
#about #development {
margin: 20px 0;
}
.stripe {
background: #175f7e;
color: white;
font-weight: bold;
padding: 6px;
margin-top: 0;
}
tr td:first-child {
text-align: right;
font-weight: bold;
width: 30%;
padding-right: 5px;
}
tr td:last-child {
text-align: left;
}
#about img {
width: 15px;
margin-left: 5px;
}
#tools td:first-child {
width: 40%;
}