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