-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css.save.1
executable file
·238 lines (196 loc) · 4.11 KB
/
style.css.save.1
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
/* style.css */
body {font-family: Arial, Helvetica, sans-serif; background-color: #333;
}
.content {position: absolute; z-index:-1; top: 60px; left: 0; right: 0; bottom: 0; background-color: #333; }
.content iframe {display: block; width: 100%; height: 100%; border: none; }
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
display: block;
color: #fff;
text-align: center;
padding: 12px 8px;
text-decoration: none;
font-size: 16px;
}
.navbar .icon {
display: none;
}
.navbar a:hover {
background-color: #616161;
color: #fff;
}
.navbar a.pcr:active {
background-color: #FF8300;
color: white;
}
.navbar a.pcr:hover {
background-color: #FF8300;
color: white;
}
.navbar a.antigen:active {
background-color: #11bae8;
color: white;
}
.navbar a.antigen:hover {
background-color: #11bae8;
color: white;
}
.navbar button {
float: left;
display: block;
color: #fff;
background-color: #333;
text-align: center;
padding: 12px 8px;
text-decoration: none;
font-size: 16px;
border: none;
line-height: 1.1em;
}
.navbar button:hover {
background-color: #616161;
color: #fff;
}
.HR::before {
content: url(img/hr.png);
line-height: 1em;
}
.EN::before {
content: url(img/en.png);
line-height: 1em;
}
.DE::before {
content: url(img/de.png);
line-height: 1em;
}
.IT::before {
content: url(img/it.png);
line-height: 1em;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 50px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: scroll; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
font-size: 14px
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: 25px;
padding: 20px;
border: 1px solid #888;
max-width: 400px;
}
/* Press */
.box {
float: left;
height: 15px;
width: 15px;
margin: 0 5px 0 0;
clear: both;
}
.green{
background-color: #41c074;
}
.orange{
background-color: #ff8300;
}
.teal{
background-color: #11bae8;
}
.press {
max-height: 35px;
opacity: 0.25;
margin: 5px 10px 0 0;
}
.press:hover {
opacity: 1.0;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
.navbar a:not(:nth-child(-n+2)) {display: none;}
.navbar a.icon {
float: right;
display: block;
}
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
.navbar.responsive {position: relative;}
.navbar.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.navbar.responsive a {
float: none;
display: block;
text-align: left;
}
}
#myModal.modal a {
float: none;
color: blue;
background-color: transparent;
text-align: initial;
padding: 0px;
text-decoration: none;
font-size: 14px;
display: inline;
}
/** LIGHTBOX MARKUP **/
.lightbox {
/* Default to hidden */
display: none;
/* Overlay entire screen */
position: fixed;
z-index: 999;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* A bit of padding around image */
padding: 1em;
/* Translucent background */
background: rgba(0, 0, 0, 0.8);
}
/* Unhide the lightbox when it's the target */
.lightbox:target {
display: block;
}
.lightbox span {
/* Full width and height */
display: block;
width: 100%;
height: 100%;
/* Size and position background image */
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}