-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
267 lines (239 loc) · 5.19 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
svg {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#names {
display: none;
}
body {
background-color: #3997BF;
}
.st1{fill:#FFFFFF;stroke:#000000;stroke-linejoin:round;}
.st2{fill:#FFFFFF;stroke:#000000;stroke-width:3.7838;stroke-linejoin:round;}
.st3{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
.st4{fill:none;}
.st5{fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:10;}
.st6{font-family:'MyriadPro-Regular';}
.st7{font-size:6px;}
.st8{font-size:4.279px;}
.st9{font-size:4.5514px;}
.st10{font-size:6.3159px;}
.st11{font-size:4.3605px;}
.st12{font-size:3.8381px;}
.st13{font-size:4.482px;}
.st14{font-size:4.8855px;}
.st15{font-size:5.1746px;}
.st16{font-size:3.7318px;}
.st17{font-size:4.1667px;}
.st18{font-size:3.3378px;}
.st19{font-size:3.0545px;}
.st20{font-size:4.0173px;}
#names
#zone{
height: 34px;
width: 60px;
float:left;
}
/* When mouse hovers region, changes color
.st1:hover {
fill: #DA4567;
}
*/
/* Positioning saves button on the left corner */
.box {
position: relative;
}
.buttonSaves {
position: absolute;
bottom: 0;
right: 0;
background-color: #000000; /* black */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: 2px solid #000000;
transition-duration: 0.4s;
border-radius: 8px;
text-align: center;
line-height: 0;
}
.save {
position: relative;
background-color: #000000; /* black */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: 2px solid #000000;
transition-duration: 0.4s;
border-radius: 8px;
text-align: center;
line-height: 0;
margin-bottom: 10px;
margin-top: 10px;
}
.load {
position: relative;
background-color: #ffffff; /* white */
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: 2px solid #000000;
transition-duration: 0.4s;
border-radius: 8px;
text-align: center;
line-height: 0;
}
.load:hover{
background-color: #000000; /* white */
color: white;
}
.save:hover{
background-color: #ffffff; /* white */
color: black;
}
.buttonSaves:hover {
background-color: #ffffff; /* white */
color: black;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #000000;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #ffffff;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #fa5e3e;
text-decoration: none;
cursor: pointer;
}
/* Modal Header */
.modal-header {
padding: 2px 16px;
background-color: #000000;
color: white;
}
/* Modal Body */
.modal-body {padding: 15px 16px;}
/* Modal Footer */
.modal-footer {
padding: 2px 16px;
background-color: #000000;
color: white;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #000000;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@keyframes animatetop {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #000000;
}
input:focus + .slider {
box-shadow: 0 0 1px #000000;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}