Bedienoberfläche für Webradio
ulrich
2021-09-29 010cf066446c9cbb96c6bd99db8701e9329bf686
commit | author | age
9f0d54 1
df379b 2 /*
U 3   app-layout anfang
4
5   Aus dem app-layout-Projekt übernommen und
6   teilweise angepasst
7 */
9f0d54 8
623a61 9 html, body {
9f0d54 10   margin: 0;
U 11   padding: 0;
12   height: 100%; /* Anmerkung 2 */
03f9a7 13   font-size: large;
U 14   /* font-size: initial; */
623a61 15   /* font-size: 1.5em; */   /* currently ems cause chrome bug misinterpreting rems on body element */
U 16   line-height: 1.6;
17   font-weight: 400;
9f0d54 18   font-family: RobotoCondensed;
623a61 19 }
9f0d54 20 body {
U 21   min-height: 0; /* Anmerkung 1 */
22   display: flex;
23   flex-flow: column;
24 }
25 .inhalt {
851c9c 26   display: flex;
U 27   flex-flow: row;
9f0d54 28   height: 100%; /* Anmerkung 2 */
U 29   min-height: 0; /* Anmerkung 1 */
623a61 30 }
9f0d54 31 .nord {
3ff95a 32   background-color: black;
9f0d54 33   display: flex;
U 34   flex-flow: row;
26bf00 35   height: 2.5em;
03f9a7 36   align-items: center;
9f0d54 37 }
U 38 .sued {
3ff95a 39   background-color: #eaeaea; /* lightgray; */
9f0d54 40 }
623a61 41 .west {
9f0d54 42   flex-grow: 0;
U 43   flex-shrink: 0;
df379b 44   flex-basis: 4em;
3ff95a 45   background-color: white;
623a61 46   transition: all 0.3s ease-in;
U 47   overflow: hidden;
48   white-space: nowrap;
3ff95a 49   /* background-color: #f7f7f7;*/
623a61 50 }
9f0d54 51 .ost {
U 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
df379b 72 /* app-layout ende */
623a61 73
03f9a7 74 #nav-menu {
U 75   /* padding-top: 0.5em;*/
26bf00 76   width: 1.8em;
03f9a7 77 }
U 78
3ff95a 79 #nav-toggle {
U 80   /*color: white;*/
81 }
623a61 82 #app-titel {
26bf00 83   padding-left: 1em;
3ff95a 84   color: white;
623a61 85 }
U 86
87 .pointer-cursor {
88   cursor: pointer;
89 }
90
8d8830 91 .sendersuche {
78789c 92   padding-left: 0.5em;
8d8830 93 }
U 94
9af042 95 .zentrum-behaelter {
U 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 {
119   background-color: #dcf2fb; // blau
120   padding: 0.4em;
121 }
122
123 .nachricht {
124   background-color: #fffbde; // gelb
125 }
126
127 .form-button-footer {
128   text-align: right;
129 }
130
131 .dlg-sender-edit, .dlg-sender-neu, .dlg-abspieler-neu {
132   background-color: #f6f6f6; // grau
133 }
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">&#10006;</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
78789c 224 /* aus Skeleton (leicht angepasst) */
U 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 */
f799a0 239   background-color: #fff;
U 240   border: 1px solid #D1D1D1;
241   border-radius: 4px;
242   box-shadow: none;
243   box-sizing: border-box;
78789c 244   font-family: RobotoCondensed;
U 245   font-size: 0.8em;
f799a0 246 }
78789c 247 /* Removes awkward default styles on some inputs for iOS */
U 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 */
9f0d54 351
851c9c 352 /* fonts */
623a61 353
U 354 @font-face {
851c9c 355     font-family: 'Amethysta';
U 356     font-style: normal;
357     font-weight: 700;
358     src: url(/lib/fonts/Amethysta/Amethysta-Regular.ttf) format('truetype');
623a61 359 }
851c9c 360 @font-face {
U 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 }