Persoenliche Mediazentrale
ulrich
2021-04-08 8d7d357497e80b87f1d3be2357cb9cb2e853e582
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
8d7d35 231 .ctrl-btn, .ctrl-btn:focus {
bebd47 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;
8d7d35 245   /* background-color: transparent; */
b90d67 246   border-radius: 4px;
8d7d35 247   border: 0;
b90d67 248   cursor: pointer;
U 249   box-sizing: border-box; 
8d7d35 250 }
U 251
252 .ctrl-btn:hover {
253   color: white;
254   background-color: #707070; /* #e1e1e1;*/  /* #707070; */
bebd47 255 }
U 256
257 .ctrl-select {
258   width: 4rem;
259 }
260
261 .ctrl-orte {
262   display: flex;
263   flex-flow: row;
264   justify-content: center;
265 }
266
267 .top-btn-area {
8d7d35 268   display: flex;
U 269   flex-flow: row;
bebd47 270   /*margin-left: auto;*/
U 271   margin: -0.5em 1em 0 2em;
272 }
273
8d7d35 274 .top-btn, .top-btn:focus {
bebd47 275   margin: 0;
U 276   padding: 0 0.2em 0 0.2em;
277   height: 1.3em;
278   line-height: 1em;
279   text-align: center;
280   font-size: large;
8d7d35 281   color: white;
U 282   border-radius: 4px;
283   border: 0;
284   /* background-color: white; */
bebd47 285   /* width: 1em; */
U 286 }
287
8d7d35 288 .top-btn:hover {
U 289   color: black;
290   background-color: #e1e1e1; /* #707070; */
291 }
faab2d 292
b379f5 293 @media (min-width: 800px) {
faab2d 294   .zentraler-inhalt {
b379f5 295     margin: 0 10% 0 10%;
U 296   }
297 }
298
b90d67 299 /* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */
U 300
301 @font-face {
302   font-family: 'pikto';
303   src: url('font/pikto.ttf?49751252') format('truetype');
304   font-weight: normal;
305   font-style: normal;
306 }
307 /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
308 /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
309 /*
310 @media screen and (-webkit-min-device-pixel-ratio:0) {
311   @font-face {
312     font-family: 'pikto';
313     src: url('../font/pikto.svg?49751252#pikto') format('svg');
314   }
315 }
316 */
317  
318  [class^="icon-"]:before, [class*=" icon-"]:before {
319   font-family: "pikto";
320   font-style: normal;
321   font-weight: normal;
322   speak: never;
323  
324   display: inline-block;
325   text-decoration: inherit;
326   width: 1em;
327   margin-right: .2em;
328   text-align: center;
329   /* opacity: .8; */
330  
331   /* For safety - reset parent styles, that can break glyph codes*/
332   font-variant: normal;
333   text-transform: none;
334  
335   /* fix buttons height, for twitter bootstrap */
336   line-height: 1em;
337  
338   /* Animation center compensation - margins should be symmetric */
339   /* remove if not needed */
340   margin-left: .2em;
341  
342   /* you can be more comfortable with increased icons size */
343   /* font-size: 120%; */
344  
345   /* Font smoothing. That was taken from TWBS */
346   -webkit-font-smoothing: antialiased;
347   -moz-osx-font-smoothing: grayscale;
348  
349   /* Uncomment for 3D effect */
350   /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
351 }
352  
353 .icon-cancel:before { content: '\e800'; } /* '' */
354 .icon-th-large:before { content: '\e801'; } /* '' */
355 .icon-th-list:before { content: '\e802'; } /* '' */
356 .icon-folder:before { content: '\e803'; } /* '' */
357 .icon-folder-open:before { content: '\e804'; } /* '' */
358 .icon-doc:before { content: '\e805'; } /* '' */
359 .icon-pencil:before { content: '\e806'; } /* '' */
360 .icon-trash-empty:before { content: '\e807'; } /* '' */
361 .icon-down-dir:before { content: '\e808'; } /* '' */
362 .icon-up-dir:before { content: '\e809'; } /* '' */
363 .icon-left-dir:before { content: '\e80a'; } /* '' */
364 .icon-right-dir:before { content: '\e80b'; } /* '' */
365 .icon-down-open:before { content: '\e80c'; } /* '' */
366 .icon-left-open:before { content: '\e80d'; } /* '' */
367 .icon-right-open:before { content: '\e80e'; } /* '' */
368 .icon-up-open:before { content: '\e80f'; } /* '' */
369 .icon-floppy:before { content: '\e810'; } /* '' */
370 .icon-eye:before { content: '\e811'; } /* '' */
371 .icon-logout:before { content: '\e812'; } /* '' */
372 .icon-play:before { content: '\e813'; } /* '' */
373 .icon-stop:before { content: '\e814'; } /* '' */
374 .icon-pause:before { content: '\e815'; } /* '' */
375 .icon-video:before { content: '\e816'; } /* '' */
376 .icon-music:before { content: '\e817'; } /* '' */
377 .icon-forward:before { content: '\e818'; } /* '' */
378 .icon-list:before { content: '\e819'; } /* '' */
379 .icon-docs:before { content: '\f0c5'; } /* '' */
380 .icon-menu:before { content: '\f0c9'; } /* '' */
381 .icon-doc-text:before { content: '\f0f6'; } /* '' */
382 .icon-angle-left:before { content: '\f104'; } /* '' */
383 .icon-angle-right:before { content: '\f105'; } /* '' */
384 .icon-angle-up:before { content: '\f106'; } /* '' */
385 .icon-angle-down:before { content: '\f107'; } /* '' */
386 .icon-tablet:before { content: '\f10a'; } /* '' */
387 .icon-folder-empty:before { content: '\f114'; } /* '' */
388 .icon-folder-open-empty:before { content: '\f115'; } /* '' */
389 .icon-ellipsis:before { content: '\f141'; } /* '' */
390 .icon-ellipsis-vert:before { content: '\f142'; } /* '' */
391 .icon-doc-inv:before { content: '\f15b'; } /* '' */
392 .icon-doc-text-inv:before { content: '\f15c'; } /* '' */
393 .icon-database:before { content: '\f1c0'; } /* '' */
394 .icon-sliders:before { content: '\f1de'; } /* '' */
395 .icon-trash:before { content: '\f1f8'; } /* '' */
396
bebd47 397 /* Dropdown Menu */
U 398
399 /* Style The Dropdown Button */
400 .dropbtn {
401   background-color: white;
402   width: 3em;
403   padding: 0;
404   font-size: medium;
405   cursor: pointer;
406 }
407
408 /* The container <div> - needed to position the dropdown content */
409 .dropdown {
410   position: relative;
411   display: inline-block;
412 }
413
414 /* Dropdown Content (Hidden by Default) */
415 .dropdown-content {
416   display: none;
417   position: absolute;
418   background-color: #f9f9f9;
419   width: 12em;
420   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
421   z-index: 1;
422   right: 0;
423   font-size: medium;
424 }
425
426 /* Links inside the dropdown */
427 .dropdown-content a {
428   color: black;
429   padding: 0.5em 0.8em;
430   text-decoration: none;
431   display: block;
432   cursor: pointer;
433 }
434
435 /* Change color of dropdown links on hover */
436 .dropdown-content a:hover {background-color: #f1f1f1}
437
438 /* Show the dropdown menu on hover */
439 .dropdown:hover .dropdown-content {
440   display: block;
441 }
442
443 /* Change the background color of the dropdown button when the dropdown content is shown */
444 .dropdown:hover .dropbtn {
445   background-color: #33C3F0; /* #3e8e41; */
446   color: white;
447   border: none;
448 }
b379f5 449
U 450 /* von Skeleton */
451
452 /* Buttons
453 –––––––––––––––––––––––––––––––––––––––––––––––––– */
454 .button,
455 button,
456 input[type="submit"],
457 input[type="reset"],
458 input[type="button"] {
459   display: inline-block;
460   height: 38px;
bebd47 461   /* padding: 0 30px; */
b379f5 462   color: #555;
U 463   text-align: center;
464   font-size: 11px;
465   font-weight: 600;
466   line-height: 38px;
467   letter-spacing: .1rem;
468   text-transform: uppercase;
469   text-decoration: none;
470   white-space: nowrap;
471   background-color: transparent;
472   border-radius: 4px;
473   border: 1px solid #bbb;
474   cursor: pointer;
475   box-sizing: border-box; }
476 .button:hover,
477 button:hover,
478 input[type="submit"]:hover,
479 input[type="reset"]:hover,
480 input[type="button"]:hover,
481 .button:focus,
482 button:focus,
483 input[type="submit"]:focus,
484 input[type="reset"]:focus,
485 input[type="button"]:focus {
486   color: #333;
487   border-color: #888;
488   outline: 0; }
489 .button.button-primary,
490 button.button-primary,
491 input[type="submit"].button-primary,
492 input[type="reset"].button-primary,
493 input[type="button"].button-primary {
494   color: #FFF;
495   background-color: #33C3F0;
496   border-color: #33C3F0; }
497 .button.button-primary:hover,
498 button.button-primary:hover,
499 input[type="submit"].button-primary:hover,
500 input[type="reset"].button-primary:hover,
501 input[type="button"].button-primary:hover,
502 .button.button-primary:focus,
503 button.button-primary:focus,
504 input[type="submit"].button-primary:focus,
505 input[type="reset"].button-primary:focus,
506 input[type="button"].button-primary:focus {
507   color: #FFF;
508   background-color: #1EAEDB;
509   border-color: #1EAEDB; }
510
511
512 /* Forms
513 –––––––––––––––––––––––––––––––––––––––––––––––––– */
514 input[type="email"],
515 input[type="number"],
516 input[type="search"],
517 input[type="text"],
518 input[type="tel"],
519 input[type="url"],
520 input[type="password"],
521 textarea,
522 select {
523   height: 38px;
bebd47 524   padding: 3px 2px; /* The 6px vertically centers text on FF, ignored by Webkit */
b379f5 525   background-color: #fff;
U 526   border: 1px solid #D1D1D1;
527   border-radius: 4px;
528   box-shadow: none;
529   box-sizing: border-box; }
530 /* Removes awkward default styles on some inputs for iOS */
531 input[type="email"],
532 input[type="number"],
533 input[type="search"],
534 input[type="text"],
535 input[type="tel"],
536 input[type="url"],
537 input[type="password"],
538 textarea {
539   -webkit-appearance: none;
540      -moz-appearance: none;
541           appearance: none; }
542 textarea {
543   min-height: 65px;
544   padding-top: 6px;
545   padding-bottom: 6px; }
546 input[type="email"]:focus,
547 input[type="number"]:focus,
548 input[type="search"]:focus,
549 input[type="text"]:focus,
550 input[type="tel"]:focus,
551 input[type="url"]:focus,
552 input[type="password"]:focus,
553 textarea:focus,
554 select:focus {
555   border: 1px solid #33C3F0;
556   outline: 0; }
557 label,
558 legend {
559   display: block;
560   margin-bottom: .5rem;
561   font-weight: 600; }
562 fieldset {
563   padding: 0;
564   border-width: 0; }
565 input[type="checkbox"],
566 input[type="radio"] {
567   display: inline; }
568 label > .label-body {
569   display: inline-block;
570   margin-left: .5rem;
571   font-weight: normal; }