commit | author | age
|
9c2c3c
|
1 |
|
U |
2 |
/* |
|
3 |
app-layout anfang |
|
4 |
|
|
5 |
Aus dem app-layout-Projekt übernommen und |
|
6 |
teilweise angepasst |
|
7 |
*/ |
|
8 |
|
|
9 |
html, body { |
|
10 |
margin: 0; |
|
11 |
padding: 0; |
|
12 |
height: 100%; /* Anmerkung 2 */ |
|
13 |
font-size: large; |
|
14 |
/* font-size: initial; */ |
|
15 |
/* font-size: 1.5em; */ /* currently ems cause chrome bug misinterpreting rems on body element */ |
|
16 |
line-height: 1.6; |
|
17 |
font-weight: 400; |
|
18 |
font-family: RobotoCondensed; |
|
19 |
} |
|
20 |
body { |
|
21 |
min-height: 0; /* Anmerkung 1 */ |
|
22 |
display: flex; |
|
23 |
flex-flow: column; |
|
24 |
} |
|
25 |
.inhalt { |
|
26 |
display: flex; |
|
27 |
flex-flow: row; |
|
28 |
height: 100%; /* Anmerkung 2 */ |
|
29 |
min-height: 0; /* Anmerkung 1 */ |
|
30 |
} |
|
31 |
.nord { |
0a9af0
|
32 |
background-color: black; |
9c2c3c
|
33 |
display: flex; |
U |
34 |
flex-flow: row; |
|
35 |
height: 2.5em; |
|
36 |
align-items: center; |
|
37 |
} |
|
38 |
.sued { |
0a9af0
|
39 |
background-color: #eaeaea; /* lightgray; */ |
9c2c3c
|
40 |
} |
U |
41 |
.west { |
|
42 |
flex-grow: 0; |
|
43 |
flex-shrink: 0; |
|
44 |
flex-basis: 4em; |
0a9af0
|
45 |
background-color: white; |
9c2c3c
|
46 |
transition: all 0.3s ease-in; |
U |
47 |
overflow: hidden; |
|
48 |
white-space: nowrap; |
0a9af0
|
49 |
/* background-color: #f7f7f7;*/ |
9c2c3c
|
50 |
} |
U |
51 |
.ost { |
|
52 |
flex-grow: 0; |
|
53 |
flex-shrink: 0; |
|
54 |
flex-basis: 10em; |
|
55 |
background-color: antiquewhite; |
|
56 |
} |
|
57 |
.zentrum { |
|
58 |
display: flex; |
|
59 |
flex-flow: row; |
|
60 |
overflow-x: hidden; |
|
61 |
margin: 0; |
|
62 |
} |
|
63 |
|
|
64 |
/* |
|
65 |
Anmerkungen: |
|
66 |
1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl. |
|
67 |
http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto |
|
68 |
2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles |
|
69 |
immer ueber das gesamte Browserfenster ausdehnt. |
|
70 |
*/ |
|
71 |
|
|
72 |
/* app-layout ende */ |
|
73 |
|
|
74 |
#nav-menu { |
|
75 |
/* padding-top: 0.5em;*/ |
|
76 |
width: 1.8em; |
|
77 |
} |
|
78 |
|
0a9af0
|
79 |
#nav-toggle { |
U |
80 |
/*color: white;*/ |
|
81 |
} |
9c2c3c
|
82 |
#app-titel { |
U |
83 |
padding-left: 1em; |
0a9af0
|
84 |
color: white; |
9c2c3c
|
85 |
} |
U |
86 |
|
|
87 |
.pointer-cursor { |
|
88 |
cursor: pointer; |
|
89 |
} |
|
90 |
|
|
91 |
.sendersuche { |
|
92 |
padding-left: 0.5em; |
|
93 |
} |
|
94 |
|
|
95 |
.zentrum-behaelter { |
|
96 |
display: flex; |
|
97 |
flex-flow: column; |
|
98 |
background-color: #eaeaea; |
|
99 |
width: 100%; |
|
100 |
} |
|
101 |
|
|
102 |
.inline-label { |
|
103 |
display: inline-block; |
|
104 |
width: 4em; |
|
105 |
text-align: right; |
|
106 |
} |
|
107 |
|
|
108 |
/* Dialogfeld */ |
|
109 |
|
|
110 |
.dialog { |
|
111 |
position: relative; |
|
112 |
} |
|
113 |
|
|
114 |
.dlg-behaelter { |
|
115 |
padding: 0.4em; |
|
116 |
} |
|
117 |
|
|
118 |
.dlg-info { |
0a9af0
|
119 |
background-color: #dcf2fb; /* blau */ |
9c2c3c
|
120 |
padding: 0.4em; |
U |
121 |
} |
|
122 |
|
|
123 |
.nachricht { |
0a9af0
|
124 |
background-color: #fffbde; /* gelb */ |
9c2c3c
|
125 |
} |
U |
126 |
|
|
127 |
.form-button-footer { |
|
128 |
text-align: right; |
|
129 |
} |
|
130 |
|
|
131 |
.dlg-sender-edit, .dlg-sender-neu, .dlg-abspieler-neu { |
0a9af0
|
132 |
background-color: #f6f6f6; /* grau */ |
9c2c3c
|
133 |
} |
U |
134 |
|
|
135 |
.sender-eingabe, .abspieler-eingabe { |
|
136 |
width: 80%; |
|
137 |
margin-left: 0.4em; |
|
138 |
} |
|
139 |
|
|
140 |
/* |
|
141 |
Close Button |
|
142 |
|
|
143 |
<div> |
|
144 |
<span class="close-btn">✖</span> |
|
145 |
</div> |
|
146 |
*/ |
|
147 |
|
|
148 |
.close-btn { |
|
149 |
position: absolute; |
|
150 |
top: 0px; |
|
151 |
right: 0.4em; |
|
152 |
margin: 0; |
|
153 |
padding: 0; |
|
154 |
font-size: 1.3em; |
|
155 |
color: #b8b8b8; |
|
156 |
} |
|
157 |
|
|
158 |
/* Abspieler */ |
|
159 |
|
|
160 |
.abspieler-behaelter { |
|
161 |
display: flex; |
|
162 |
flex-flow: row; |
|
163 |
padding: 0.6em; |
|
164 |
} |
|
165 |
|
|
166 |
.abspieler-lb { |
|
167 |
width: 4.5em; |
|
168 |
padding-right: 0.2em; |
|
169 |
} |
|
170 |
|
|
171 |
.abspieler-auswahl, .abspieler-form-auswahl { |
|
172 |
width: 70%; |
|
173 |
margin-left: 0.4em; |
|
174 |
} |
|
175 |
|
|
176 |
#abspielen-stoppen { |
|
177 |
margin-left: 0.4em; |
|
178 |
width: 2em; |
|
179 |
font-size: 0.8em; |
|
180 |
padding: 0 0 0 0.3em; |
|
181 |
} |
|
182 |
|
|
183 |
/* Sender */ |
|
184 |
|
|
185 |
.sender-behaelter { |
|
186 |
display: flex; |
|
187 |
flex-flow: column; |
|
188 |
} |
|
189 |
|
|
190 |
.sender { |
|
191 |
display: flex; |
|
192 |
flex-flow: row; |
|
193 |
padding: 0.4em; |
|
194 |
flex-wrap: wrap; |
|
195 |
background-color: #eaeaea; |
|
196 |
} |
|
197 |
|
|
198 |
.sender-kachel { |
|
199 |
display: flex; |
|
200 |
flex-flow: column; |
|
201 |
align-items: center; |
|
202 |
margin: 0.4em; |
|
203 |
padding: 0.4em; |
|
204 |
background-color: white; |
|
205 |
cursor: pointer; |
|
206 |
} |
|
207 |
|
|
208 |
.sender-name { |
|
209 |
font-family: RobotoCondensedBold; |
|
210 |
} |
|
211 |
|
|
212 |
.sender-bild { |
|
213 |
width: 5em; |
|
214 |
background-color: #ebe6e6; |
|
215 |
} |
|
216 |
|
|
217 |
/* Menü-Erscheinung */ |
|
218 |
|
|
219 |
.app-menu-kopf { |
|
220 |
font-family: Oswald; |
|
221 |
} |
|
222 |
|
|
223 |
|
|
224 |
/* aus Skeleton (leicht angepasst) */ |
|
225 |
|
|
226 |
/* Forms |
|
227 |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ |
|
228 |
input[type="email"], |
|
229 |
input[type="number"], |
|
230 |
input[type="search"], |
|
231 |
input[type="text"], |
|
232 |
input[type="tel"], |
|
233 |
input[type="url"], |
|
234 |
input[type="password"], |
|
235 |
textarea, |
|
236 |
select { |
|
237 |
height: 38px; |
|
238 |
padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ |
|
239 |
background-color: #fff; |
|
240 |
border: 1px solid #D1D1D1; |
|
241 |
border-radius: 4px; |
|
242 |
box-shadow: none; |
|
243 |
box-sizing: border-box; |
|
244 |
font-family: RobotoCondensed; |
|
245 |
font-size: 0.8em; |
|
246 |
} |
|
247 |
/* Removes awkward default styles on some inputs for iOS */ |
|
248 |
input[type="email"], |
|
249 |
input[type="number"], |
|
250 |
input[type="search"], |
|
251 |
input[type="text"], |
|
252 |
input[type="tel"], |
|
253 |
input[type="url"], |
|
254 |
input[type="password"], |
|
255 |
textarea { |
|
256 |
-webkit-appearance: none; |
|
257 |
-moz-appearance: none; |
|
258 |
appearance: none; } |
|
259 |
textarea { |
|
260 |
min-height: 65px; |
|
261 |
padding-top: 6px; |
|
262 |
padding-bottom: 6px; } |
|
263 |
input[type="email"]:focus, |
|
264 |
input[type="number"]:focus, |
|
265 |
input[type="search"]:focus, |
|
266 |
input[type="text"]:focus, |
|
267 |
input[type="tel"]:focus, |
|
268 |
input[type="url"]:focus, |
|
269 |
input[type="password"]:focus, |
|
270 |
textarea:focus, |
|
271 |
select:focus { |
|
272 |
border: 1px solid #33C3F0; |
|
273 |
outline: 0; } |
|
274 |
label, |
|
275 |
legend { |
|
276 |
display: block; |
|
277 |
margin-bottom: .5rem; |
|
278 |
/* font-weight: 600; */ } |
|
279 |
fieldset { |
|
280 |
padding: 0; |
|
281 |
border-width: 0; } |
|
282 |
input[type="checkbox"], |
|
283 |
input[type="radio"] { |
|
284 |
display: inline; } |
|
285 |
label > .label-body { |
|
286 |
display: inline-block; |
|
287 |
margin-left: .5rem; |
|
288 |
font-weight: normal; } |
|
289 |
|
|
290 |
|
|
291 |
/* Buttons |
|
292 |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ |
|
293 |
.button, |
|
294 |
button, |
|
295 |
input[type="submit"], |
|
296 |
input[type="reset"], |
|
297 |
input[type="button"] { |
|
298 |
display: inline-block; |
|
299 |
height: 38px; |
|
300 |
padding: 0 30px; |
|
301 |
color: #555; |
|
302 |
text-align: center; |
|
303 |
font-size: 11px; |
|
304 |
font-weight: 600; |
|
305 |
line-height: 38px; |
|
306 |
letter-spacing: .1rem; |
|
307 |
text-transform: uppercase; |
|
308 |
text-decoration: none; |
|
309 |
white-space: nowrap; |
|
310 |
background-color: transparent; |
|
311 |
border-radius: 4px; |
|
312 |
border: 1px solid #bbb; |
|
313 |
cursor: pointer; |
|
314 |
box-sizing: border-box; } |
|
315 |
.button:hover, |
|
316 |
button:hover, |
|
317 |
input[type="submit"]:hover, |
|
318 |
input[type="reset"]:hover, |
|
319 |
input[type="button"]:hover, |
|
320 |
.button:focus, |
|
321 |
button:focus, |
|
322 |
input[type="submit"]:focus, |
|
323 |
input[type="reset"]:focus, |
|
324 |
input[type="button"]:focus { |
|
325 |
color: #333; |
|
326 |
border-color: #888; |
|
327 |
outline: 0; } |
|
328 |
.button.button-primary, |
|
329 |
button.button-primary, |
|
330 |
input[type="submit"].button-primary, |
|
331 |
input[type="reset"].button-primary, |
|
332 |
input[type="button"].button-primary { |
|
333 |
color: #FFF; |
|
334 |
background-color: #33C3F0; |
|
335 |
border-color: #33C3F0; } |
|
336 |
.button.button-primary:hover, |
|
337 |
button.button-primary:hover, |
|
338 |
input[type="submit"].button-primary:hover, |
|
339 |
input[type="reset"].button-primary:hover, |
|
340 |
input[type="button"].button-primary:hover, |
|
341 |
.button.button-primary:focus, |
|
342 |
button.button-primary:focus, |
|
343 |
input[type="submit"].button-primary:focus, |
|
344 |
input[type="reset"].button-primary:focus, |
|
345 |
input[type="button"].button-primary:focus { |
|
346 |
color: #FFF; |
|
347 |
background-color: #1EAEDB; |
|
348 |
border-color: #1EAEDB; } |
|
349 |
|
|
350 |
/* Ende Skeleton */ |
|
351 |
|
|
352 |
/* fonts */ |
|
353 |
|
|
354 |
@font-face { |
|
355 |
font-family: 'Amethysta'; |
|
356 |
font-style: normal; |
|
357 |
font-weight: 700; |
|
358 |
src: url(/lib/fonts/Amethysta/Amethysta-Regular.ttf) format('truetype'); |
|
359 |
} |
|
360 |
@font-face { |
|
361 |
font-family: 'Oswald'; |
|
362 |
font-style: normal; |
|
363 |
font-weight: 700; |
|
364 |
src: url(/lib/fonts/Oswald/Oswald-Regular.ttf) format('truetype'); |
|
365 |
} |
|
366 |
@font-face { |
|
367 |
font-family: 'OswaldBold'; |
|
368 |
font-weight: bold; |
|
369 |
src: url(/lib/fonts/Oswald/Oswald-Bold.ttf) format('truetype'); |
|
370 |
} |
|
371 |
@font-face { |
|
372 |
font-family: 'RobotoCondensed'; |
|
373 |
font-weight: normal; |
|
374 |
src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype'); |
|
375 |
} |
|
376 |
@font-face { |
|
377 |
font-family: 'RobotoCondensedBold'; |
|
378 |
font-weight: bold; |
|
379 |
src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype'); |
|
380 |
} |