Persoenliche Mediazentrale
ulrich
2021-04-07 f45e203a66a5471a0dd05e0362566ef96a2b6b31
commit | author | age
cfa858 1 html, body {
U 2   margin: 0;
3   padding: 0;
4   height: 100%; /* Anmerkung 2 */
5   font-size: larger;
6   font-family: 'Roboto Condensed';
7 }
8 body {
9   min-height: 0; /* Anmerkung 1 */
10   display: flex;
11   flex-flow: column;
12 }
13 .inhalt {
14   display: flex;
15   flex-flow: row;
16   height: 100%; /* Anmerkung 2 */
17   min-height: 0; /* Anmerkung 1 */
18   background-color: #ededed;
19   overflow: hidden;
20 }
21 .nord {
22   background-color: black;
23   display: flex;
24   flex-flow: row;
25   height: 2em;
26   align-items: center;
bebd47 27   justify-content: space-between;
cfa858 28 }
U 29 .sued {
30   height: 1.5em;
31   overflow: hidden;
32   transition: all 0.3s ease-in;
33   background-color: lightgray;
34 }
35 .west {
36   flex-grow: 0;
37   flex-shrink: 0;
38   flex-basis: 4em;
faab2d 39   background-color: #ececec; /* white; */
cfa858 40   transition: all 0.3s ease-in;
U 41   overflow: hidden;
42   white-space: nowrap;
43 }
44 .ost {
45   flex-grow: 0;
46   flex-shrink: 0;
47   flex-basis: 6em;
48   transition: all 0.3s ease-in;
49   background-color: antiquewhite;
50   overflow: hidden;
51 }
52 .zentrum-behaelter {
53   display: flex;
54   flex-flow: column;
55   /* background-color: #eaeaea; */
56   width: 100%;
57 }
58
59 .zentrum {
60   width: 100%;
61   height: 100%;
62   overflow-x: hidden;
63   overflow-y: auto;
64   -webkit-overflow-scrolling: touch;
faab2d 65   background-color: white;
cfa858 66 }
U 67
68 .zentraler-inhalt {
69   padding: 0.5em;
70 }
71
72 /*
73   Anmerkungen:
74   1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl.
75       http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto
76   2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles
77       immer ueber das gesamte Browserfenster ausdehnt.
78 */
79
80 .app-titel {
81   margin-left: 0.6em;
82   color: white;
83 }
84
85 .pointer-cursor {
86   cursor: pointer;
87 }
88
89 .dialog {
90   position: relative;
91   /* height: 0.1em; */
92   transition: all 0.3s ease-in;
93 }
94
8239d1 95 .dialog-unten {
bebd47 96   /* position: relative; */
8239d1 97   /* height: 0.1em; */
bebd47 98   /* transition: all 0.3s ease-in; */
8239d1 99 }
U 100
cfa858 101 .dlg-behaelter {
U 102   line-height: 1.6;
103   padding: 0.4em;
104 }
105
106 .dlg-info {
faab2d 107   background-color: #dcf2fb; /* blau */
cfa858 108   padding: 0.4em;
U 109 }
110
111 /*
112   Close Button
113
114   <div>
115     <span class="close-btn">&#10006;</span>
116   </div>
117 */
118
119 .close-btn {
120   position: absolute;
121   top: 0px;
122   right: 0.4em;
123   margin: 0;
124   padding: 0;
125   font-size: 1.3em;
126   color: #b8b8b8;
127 }
b379f5 128
U 129 /* ab hier Mediazentrale */
130
131 .entity-formular {
132   display: flex;
133   flex-flow: column;
134 }
135
faab2d 136 .entity-liste-kopf {
U 137   display: flex;
138   flex-flow: row;
139   justify-content: space-between;
140   vertical-align: middle;
141 }
142
143 .entity-liste-kopf .button {
144   /* margin-left: 1rem; */
145   /* margin-top: -0.2rem; */
146 }
147
b379f5 148 .entity-element {
U 149   margin: 0.4rem;
faab2d 150 }
U 151
152 .entity-element:hover {
7c22a2 153   background-color: #ececec;
b379f5 154 }
U 155
a43e1a 156 .entity-liste {
U 157   list-style-type: none;
158 }
159
160 .entity-eintrag {
161   margin-top: 0.8rem;
162   margin-left: 0;
163   margin-right: 0;
164   margin-bottom: 0;
faab2d 165   cursor: pointer;
U 166 }
167
168 .entity-eintrag:hover {
169   background-color: background;
a43e1a 170 }
U 171
7c22a2 172 .entity-typ-folder:before {
U 173   font-family: "pikto";
174   content: '\f114';
175   padding-right: 0.3rem;
176 }
177
178 .entity-typ-audio:before {
179   font-family: "pikto";
180   content: '\e817'; /* icon-music */
181   padding-right: 0.3rem;
182 }
183
184 .entity-typ-video:before {
185   font-family: "pikto";
186   content: '\e816'; /* icon-video */
187   padding-right: 0.3rem;
188 }
189
190 .entity-typ-file:before {
191   font-family: "pikto";
192   content: '\e805';  /* icon-doc */
193   padding-right: 0.3rem;
194 }
195
90d368 196 .entity-typ-katalog:before {
U 197   font-family: "pikto";
198   content: '\f1c0';  /* icon-database */
199   padding-right: 0.3rem;
200 }
201
5b7356 202 .form-button-footer {
U 203   display: flex;
204   flex-flow: row;
7c22a2 205 }
U 206
207 .selected {
208   background-color: #ececec;
5b7356 209 }
U 210
211 .dlg-btn {
212   margin-left: 0.4rem;
213 }
214
bebd47 215 .ctrl {
U 216   display: flex;
217   flex-flow: column;
218 }
219
220 .ctrl-btns {
221   display: flex;
222   flex-flow: row;
223   justify-content: center;
224 }
225
226 .ctrl-item {
227   margin-left: 0.2rem;
228   margin-top: 0.2rem;
229 }
230
231 .ctrl-btn {
232   width: 4rem;
b90d67 233   font-size: medium;
U 234   display: inline-block;
235   height: 2rem;
236   /* padding: 0 30px; */
7c22a2 237   color: black;
b90d67 238   text-align: center;
U 239   font-weight: 600;
240   line-height: 2rem;
241   letter-spacing: .1rem;
242   text-transform: none;
243   text-decoration: none;
244   white-space: nowrap;
245   background-color: transparent;
246   border-radius: 4px;
247   border: 1px solid #bbb;
248   cursor: pointer;
249   box-sizing: border-box; 
bebd47 250 }
U 251
252 .ctrl-select {
253   width: 4rem;
254 }
255
256 .ctrl-orte {
257   display: flex;
258   flex-flow: row;
259   justify-content: center;
260 }
261
262 .top-btn-area {
263   /*margin-left: auto;*/
264   margin: -0.5em 1em 0 2em;
265 }
266
267 .top-btn {
268   margin: 0;
269   padding: 0 0.2em 0 0.2em;
270   height: 1.3em;
271   line-height: 1em;
272   text-align: center;
273   font-size: large;
274   background-color: white;
275   /* width: 1em; */
276 }
277
faab2d 278
b379f5 279 @media (min-width: 800px) {
faab2d 280   .zentraler-inhalt {
b379f5 281     margin: 0 10% 0 10%;
U 282   }
283 }
284
b90d67 285 /* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */
U 286
287 @font-face {
288   font-family: 'pikto';
289   src: url('font/pikto.ttf?49751252') format('truetype');
290   font-weight: normal;
291   font-style: normal;
292 }
293 /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
294 /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
295 /*
296 @media screen and (-webkit-min-device-pixel-ratio:0) {
297   @font-face {
298     font-family: 'pikto';
299     src: url('../font/pikto.svg?49751252#pikto') format('svg');
300   }
301 }
302 */
303  
304  [class^="icon-"]:before, [class*=" icon-"]:before {
305   font-family: "pikto";
306   font-style: normal;
307   font-weight: normal;
308   speak: never;
309  
310   display: inline-block;
311   text-decoration: inherit;
312   width: 1em;
313   margin-right: .2em;
314   text-align: center;
315   /* opacity: .8; */
316  
317   /* For safety - reset parent styles, that can break glyph codes*/
318   font-variant: normal;
319   text-transform: none;
320  
321   /* fix buttons height, for twitter bootstrap */
322   line-height: 1em;
323  
324   /* Animation center compensation - margins should be symmetric */
325   /* remove if not needed */
326   margin-left: .2em;
327  
328   /* you can be more comfortable with increased icons size */
329   /* font-size: 120%; */
330  
331   /* Font smoothing. That was taken from TWBS */
332   -webkit-font-smoothing: antialiased;
333   -moz-osx-font-smoothing: grayscale;
334  
335   /* Uncomment for 3D effect */
336   /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
337 }
338  
339 .icon-cancel:before { content: '\e800'; } /* '' */
340 .icon-th-large:before { content: '\e801'; } /* '' */
341 .icon-th-list:before { content: '\e802'; } /* '' */
342 .icon-folder:before { content: '\e803'; } /* '' */
343 .icon-folder-open:before { content: '\e804'; } /* '' */
344 .icon-doc:before { content: '\e805'; } /* '' */
345 .icon-pencil:before { content: '\e806'; } /* '' */
346 .icon-trash-empty:before { content: '\e807'; } /* '' */
347 .icon-down-dir:before { content: '\e808'; } /* '' */
348 .icon-up-dir:before { content: '\e809'; } /* '' */
349 .icon-left-dir:before { content: '\e80a'; } /* '' */
350 .icon-right-dir:before { content: '\e80b'; } /* '' */
351 .icon-down-open:before { content: '\e80c'; } /* '' */
352 .icon-left-open:before { content: '\e80d'; } /* '' */
353 .icon-right-open:before { content: '\e80e'; } /* '' */
354 .icon-up-open:before { content: '\e80f'; } /* '' */
355 .icon-floppy:before { content: '\e810'; } /* '' */
356 .icon-eye:before { content: '\e811'; } /* '' */
357 .icon-logout:before { content: '\e812'; } /* '' */
358 .icon-play:before { content: '\e813'; } /* '' */
359 .icon-stop:before { content: '\e814'; } /* '' */
360 .icon-pause:before { content: '\e815'; } /* '' */
361 .icon-video:before { content: '\e816'; } /* '' */
362 .icon-music:before { content: '\e817'; } /* '' */
363 .icon-forward:before { content: '\e818'; } /* '' */
364 .icon-list:before { content: '\e819'; } /* '' */
365 .icon-docs:before { content: '\f0c5'; } /* '' */
366 .icon-menu:before { content: '\f0c9'; } /* '' */
367 .icon-doc-text:before { content: '\f0f6'; } /* '' */
368 .icon-angle-left:before { content: '\f104'; } /* '' */
369 .icon-angle-right:before { content: '\f105'; } /* '' */
370 .icon-angle-up:before { content: '\f106'; } /* '' */
371 .icon-angle-down:before { content: '\f107'; } /* '' */
372 .icon-tablet:before { content: '\f10a'; } /* '' */
373 .icon-folder-empty:before { content: '\f114'; } /* '' */
374 .icon-folder-open-empty:before { content: '\f115'; } /* '' */
375 .icon-ellipsis:before { content: '\f141'; } /* '' */
376 .icon-ellipsis-vert:before { content: '\f142'; } /* '' */
377 .icon-doc-inv:before { content: '\f15b'; } /* '' */
378 .icon-doc-text-inv:before { content: '\f15c'; } /* '' */
379 .icon-database:before { content: '\f1c0'; } /* '' */
380 .icon-sliders:before { content: '\f1de'; } /* '' */
381 .icon-trash:before { content: '\f1f8'; } /* '' */
382
bebd47 383 /* Dropdown Menu */
U 384
385 /* Style The Dropdown Button */
386 .dropbtn {
387   background-color: white;
388   width: 3em;
389   padding: 0;
390   font-size: medium;
391   cursor: pointer;
392 }
393
394 /* The container <div> - needed to position the dropdown content */
395 .dropdown {
396   position: relative;
397   display: inline-block;
398 }
399
400 /* Dropdown Content (Hidden by Default) */
401 .dropdown-content {
402   display: none;
403   position: absolute;
404   background-color: #f9f9f9;
405   width: 12em;
406   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
407   z-index: 1;
408   right: 0;
409   font-size: medium;
410 }
411
412 /* Links inside the dropdown */
413 .dropdown-content a {
414   color: black;
415   padding: 0.5em 0.8em;
416   text-decoration: none;
417   display: block;
418   cursor: pointer;
419 }
420
421 /* Change color of dropdown links on hover */
422 .dropdown-content a:hover {background-color: #f1f1f1}
423
424 /* Show the dropdown menu on hover */
425 .dropdown:hover .dropdown-content {
426   display: block;
427 }
428
429 /* Change the background color of the dropdown button when the dropdown content is shown */
430 .dropdown:hover .dropbtn {
431   background-color: #33C3F0; /* #3e8e41; */
432   color: white;
433   border: none;
434 }
b379f5 435
U 436 /* von Skeleton */
437
438 /* Buttons
439 –––––––––––––––––––––––––––––––––––––––––––––––––– */
440 .button,
441 button,
442 input[type="submit"],
443 input[type="reset"],
444 input[type="button"] {
445   display: inline-block;
446   height: 38px;
bebd47 447   /* padding: 0 30px; */
b379f5 448   color: #555;
U 449   text-align: center;
450   font-size: 11px;
451   font-weight: 600;
452   line-height: 38px;
453   letter-spacing: .1rem;
454   text-transform: uppercase;
455   text-decoration: none;
456   white-space: nowrap;
457   background-color: transparent;
458   border-radius: 4px;
459   border: 1px solid #bbb;
460   cursor: pointer;
461   box-sizing: border-box; }
462 .button:hover,
463 button:hover,
464 input[type="submit"]:hover,
465 input[type="reset"]:hover,
466 input[type="button"]:hover,
467 .button:focus,
468 button:focus,
469 input[type="submit"]:focus,
470 input[type="reset"]:focus,
471 input[type="button"]:focus {
472   color: #333;
473   border-color: #888;
474   outline: 0; }
475 .button.button-primary,
476 button.button-primary,
477 input[type="submit"].button-primary,
478 input[type="reset"].button-primary,
479 input[type="button"].button-primary {
480   color: #FFF;
481   background-color: #33C3F0;
482   border-color: #33C3F0; }
483 .button.button-primary:hover,
484 button.button-primary:hover,
485 input[type="submit"].button-primary:hover,
486 input[type="reset"].button-primary:hover,
487 input[type="button"].button-primary:hover,
488 .button.button-primary:focus,
489 button.button-primary:focus,
490 input[type="submit"].button-primary:focus,
491 input[type="reset"].button-primary:focus,
492 input[type="button"].button-primary:focus {
493   color: #FFF;
494   background-color: #1EAEDB;
495   border-color: #1EAEDB; }
496
497
498 /* Forms
499 –––––––––––––––––––––––––––––––––––––––––––––––––– */
500 input[type="email"],
501 input[type="number"],
502 input[type="search"],
503 input[type="text"],
504 input[type="tel"],
505 input[type="url"],
506 input[type="password"],
507 textarea,
508 select {
509   height: 38px;
bebd47 510   padding: 3px 2px; /* The 6px vertically centers text on FF, ignored by Webkit */
b379f5 511   background-color: #fff;
U 512   border: 1px solid #D1D1D1;
513   border-radius: 4px;
514   box-shadow: none;
515   box-sizing: border-box; }
516 /* Removes awkward default styles on some inputs for iOS */
517 input[type="email"],
518 input[type="number"],
519 input[type="search"],
520 input[type="text"],
521 input[type="tel"],
522 input[type="url"],
523 input[type="password"],
524 textarea {
525   -webkit-appearance: none;
526      -moz-appearance: none;
527           appearance: none; }
528 textarea {
529   min-height: 65px;
530   padding-top: 6px;
531   padding-bottom: 6px; }
532 input[type="email"]:focus,
533 input[type="number"]:focus,
534 input[type="search"]:focus,
535 input[type="text"]:focus,
536 input[type="tel"]:focus,
537 input[type="url"]:focus,
538 input[type="password"]:focus,
539 textarea:focus,
540 select:focus {
541   border: 1px solid #33C3F0;
542   outline: 0; }
543 label,
544 legend {
545   display: block;
546   margin-bottom: .5rem;
547   font-weight: 600; }
548 fieldset {
549   padding: 0;
550   border-width: 0; }
551 input[type="checkbox"],
552 input[type="radio"] {
553   display: inline; }
554 label > .label-body {
555   display: inline-block;
556   margin-left: .5rem;
557   font-weight: normal; }