ulrich
2020-05-16 f57e8475b5c9d58dd9cedc7f0d866d9cdb09965c
commit | author | age
002c44 1 /* 
U 2     Created on : 24.01.2020, 09:08:45
3     Author     : ulrich
4 */
5
6
7
8
9
10
11 /* aus App-Vorlage */
12
13 html, body {
14   margin: 0;
15   padding: 0;
16   height: 100%; /* Anmerkung 2 */
17   font-size: larger;
18   font-family: 'Roboto Condensed';
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 */
045d48 30   /* background-color: #ededed; */
002c44 31   overflow: hidden;
U 32 }
33 .nord {
045d48 34   background-color: #eee;
002c44 35   display: flex;
U 36   flex-flow: row;
37   height: 2em;
38   align-items: center;
39 }
40 .sued {
41   height: 1.5em;
42   overflow: hidden;
43   transition: all 0.3s ease-in;
44   background-color: lightgray;
45 }
46 .west {
47   flex-grow: 0;
48   flex-shrink: 0;
49   flex-basis: 4em;
50   background-color: white;
51   transition: all 0.3s ease-in;
52   overflow: hidden;
53   white-space: nowrap;
54 }
55 .ost {
56   flex-grow: 0;
57   flex-shrink: 0;
58   flex-basis: 6em;
59   transition: all 0.3s ease-in;
60   background-color: antiquewhite;
61   overflow: hidden;
62 }
63 .zentrum-behaelter {
64   display: flex;
65   flex-flow: column;
66   /* background-color: #eaeaea; */
e86f3c 67   height: 100%;
002c44 68   width: 100%;
U 69 }
70
71 .zentrum {
72   width: 100%;
73   height: 100%;
74   overflow-x: hidden;
75   overflow-y: auto;
76   -webkit-overflow-scrolling: touch;
77 }
78
79 .zentraler-inhalt {
80   padding: 0.5em;
81 }
82
83 /*
84   Anmerkungen:
85   1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl.
86       http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto
87   2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles
88       immer ueber das gesamte Browserfenster ausdehnt.
89 */
90
d9858d 91 /* Kopfleiste */
U 92
002c44 93 .app-titel {
045d48 94   margin-left: 0.1em;
U 95   color: black;
96 }
97
98 .zurueck-btn, .zurueck-btn:focus {
99   border: 0;
100   margin: 0 1.2em 0 0.6em;
101   padding: 0;
102   color: black;
103 }
104
105 .zurueck-btn:hover {
106   color: #888;
107 }
108
109 .top-btn {
110   margin: 0 1em 0 1em;
111
112   height: 28px;
113   line-height: 24px;
114   text-align: center;
115   font-size: large;
002c44 116 }
U 117
d9858d 118 /* Nutzerliste */
U 119
120 .nutzer-liste-eintrag {
121   margin: 0;
122   padding: 0.3em 0 0 0;
123   cursor: pointer;
124 }
125
126 .nutzer-gewaehlt {
127   background-color: lightsteelblue;
128 }
129
130 /* ... */
131
002c44 132 .pointer-cursor {
U 133   cursor: pointer;
134 }
135
136 .breadcrumb {
137   background-color: beige;
138   padding: 0.2em;
139   font-size: medium;
140 }
d9858d 141
U 142 /* Dialoge (Info, Neuer Nutzer, ..) */
002c44 143
U 144 .dialog {
e86f3c 145   display: flex;
U 146   flex-flow: column;
002c44 147   position: relative;
U 148   transition: all 0.3s ease-in;
e86f3c 149   /* white-space: nowrap; */
002c44 150 }
U 151
e86f3c 152 .dlg-behaelter { 
U 153   display: flex;
154   flex-flow: column;
155   /* line-height: 1.6; */
156   height: 100%;
002c44 157   padding: 0.4em;
U 158 }
159
c995b7 160
002c44 161 .dlg-info {
e86f3c 162   display: flex;
U 163   flex-flow: column;
002c44 164   background-color: #dcf2fb; /* blau */ 
U 165   padding: 0.4em;
166 }
167
590b02 168 .nutzer-form {
U 169   padding: 0.3em;
170 }
171
172 .nutzer-eingabe {
173   width: 100%;
174   margin: 0.3em;
175 }
176
177 .form-button-footer {
178   padding: 0.4em;
179 }
180
e86f3c 181
002c44 182 /*
U 183   Close Button
184
185   <div>
186     <span class="close-btn">&#10006;</span>
187   </div>
188 */
189
190 .close-btn {
191   position: absolute;
192   top: 0px;
193   right: 0.4em;
194   margin: 0;
195   padding: 0;
196   font-size: 1.3em;
197   color: #b8b8b8;
198 }
199
d9858d 200 /* Nutzer-Rollen */
f9d0c4 201
d9858d 202 .rollen-ansicht-titel {
U 203   margin: 0;
204   padding: 0;
d1b8b2 205 }
U 206
d9858d 207 .rollen-ueberschrift {
U 208   margin: 1.2em 0 0.2em 0;
209   padding: 0;
210 }
211
212 .rollen-behaelter {
213   margin: 0;
214   padding: 0;
215 }
216
217 .granted-role-btn {
70d6da 218   height: 2.5em;
U 219   padding: 0 0.5em;
d9858d 220   margin: 0.2em;
U 221   background-color: lightcoral;
70d6da 222   text-transform: none;
U 223   font-size: medium;
d9858d 224 }
U 225
226 .avl-role-btn {
70d6da 227   height: 2.5em;
U 228   padding: 0 0.5em;
d9858d 229   margin: 0.2em;
U 230   background-color: darkseagreen;
70d6da 231   text-transform: none;
U 232   font-size: medium;
f9d0c4 233 }
U 234
002c44 235 /* für app-menu */
U 236
237
238 .app-menu {
239   margin: 0;
240   padding: 0;
241 }
242
243 .app-menu-kopf {
244   text-align: center;
245 }
246
247 ul.app-menu {
248     list-style: none;
249 }
250
251 .app-menu-item-back {
252   margin-bottom: 0.3em;
253   cursor: pointer;
254 }
255
256 .app-menu-item {
257   text-align: right;
258   cursor: pointer;
259 }
260
261 .app-menu-item-submark {
262   color: transparent;
263   cursor: pointer;
264 }
265
266 /*
267   Das div-Element, das das Menue aufnimmt erhaelt
268   die Klasse app-menu-content
269 */
270 .app-menu-content {
271   overflow: hidden;
272 }
273
274 /* für Hamburger Icon */
275
276 .hamburger {
277   display: inline-block;
278   cursor: pointer;
279   transition-property: opacity, filter;
280   transition-duration: 0.15s;
281   transition-timing-function: linear;
282   font: inherit;
283   color: inherit;
284   text-transform: none;
285   background-color: transparent;
286   border: 0;
287   margin: 0;
288   overflow: visible;
289 }
290
291 .hamburger:hover {
292   opacity: 0.7;
293 }
294
295 .hamburger-box {
296   width: 40px;
297   height: 24px;
298   display: inline-block;
299   position: relative;
300 }
301
302 .hamburger-inner {
303   display: block;
304   top: 50%;
305   margin: 0;
306 }
307
308 .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
309   width: 30px;
310   height: 4px;
311   background-color: white; /* #000; */
312   border-radius: 4px;
313   position: absolute;
314   transition-property: transform;
315   transition-duration: 0.15s;
316   transition-timing-function: ease;
317 }
318
319 .hamburger-inner::before, .hamburger-inner::after {
320   content: "";
321   display: block;
322 }
323
324 .hamburger-inner::before {
325   top: -10px;
326 }
327
328 .hamburger-inner::after {
329   bottom: -10px;
330 }
331
332 /*
333  * Elastic
334  */
335 .hamburger--elastic .hamburger-inner {
336   top: 2px;
337   transition-duration: 0.275s;
338   transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
339 }
340
341 .hamburger--elastic .hamburger-inner::before {
342   top: 10px;
343   transition: opacity 0.125s 0.275s ease;
344 }
345
346 .hamburger--elastic .hamburger-inner::after {
347   top: 20px;
348   transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
349 }
350
351 .hamburger--elastic.is-active .hamburger-inner {
352   transform: translate3d(0, 10px, 0) rotate(135deg);
353   transition-delay: 0.075s;
354 }
355
356 .hamburger--elastic.is-active .hamburger-inner::before {
357   transition-delay: 0s;
358   opacity: 0;
359 }
360
361 .hamburger--elastic.is-active .hamburger-inner::after {
362   transform: translate3d(0, -20px, 0) rotate(-270deg);
363   transition-delay: 0.075s;
364 }
365
366 /* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */
367
368 @font-face {
369   font-family: 'pikto';
370   src: url('font/pikto.ttf?37040783') format('truetype');
371   font-weight: normal;
372   font-style: normal;
373 }
374  
375  [class^="icon-"]:before, [class*=" icon-"]:before {
376   font-family: "pikto";
377   font-style: normal;
378   font-weight: normal;
379   speak: none;
380  
381   display: inline-block;
382   text-decoration: inherit;
383   width: 1em;
384   margin-right: .2em;
385   text-align: center;
386   /* opacity: .8; */
387  
388   /* For safety - reset parent styles, that can break glyph codes*/
389   font-variant: normal;
390   text-transform: none;
391  
392   /* fix buttons height, for twitter bootstrap */
393   line-height: 1em;
394  
395   /* Animation center compensation - margins should be symmetric */
396   /* remove if not needed */
397   margin-left: .2em;
398  
399   /* you can be more comfortable with increased icons size */
400   /* font-size: 120%; */
401  
402   /* Font smoothing. That was taken from TWBS */
403   -webkit-font-smoothing: antialiased;
404   -moz-osx-font-smoothing: grayscale;
405  
406   /* Uncomment for 3D effect */
407   /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
408 }
409  
410 .icon-folder:before { content: '\e800'; } /* '' */
411 .icon-folder-open:before { content: '\e801'; } /* '' */
412 .icon-th-large:before { content: '\e802'; } /* '' */
413 .icon-th-list:before { content: '\e803'; } /* '' */
414 .icon-doc-text:before { content: '\f0f6'; } /* '' */
415 .icon-folder-empty:before { content: '\f114'; } /* '' */
416 .icon-folder-open-empty:before { content: '\f115'; } /* '' */
417 .icon-doc-inv:before { content: '\f15b'; } /* '' */
cae925 418 .icon-doc-text-inv:before { content: '\f15c'; } /* '' */
U 419
420
421 /* von Skeleton */
422
423 /* Buttons
424 –––––––––––––––––––––––––––––––––––––––––––––––––– */
425 .button,
426 button,
427 input[type="submit"],
428 input[type="reset"],
429 input[type="button"] {
430   display: inline-block;
431   height: 38px;
432   padding: 0 30px;
433   color: #555;
434   text-align: center;
435   font-size: 11px;
436   font-weight: 600;
437   line-height: 38px;
438   letter-spacing: .1rem;
439   text-transform: uppercase;
440   text-decoration: none;
441   white-space: nowrap;
442   background-color: transparent;
443   border-radius: 4px;
444   border: 1px solid #bbb;
445   cursor: pointer;
446   box-sizing: border-box; }
447 .button:hover,
448 button:hover,
449 input[type="submit"]:hover,
450 input[type="reset"]:hover,
451 input[type="button"]:hover,
452 .button:focus,
453 button:focus,
454 input[type="submit"]:focus,
455 input[type="reset"]:focus,
456 input[type="button"]:focus {
457   color: #333;
458   border-color: #888;
459   outline: 0; }
460 .button.button-primary,
461 button.button-primary,
462 input[type="submit"].button-primary,
463 input[type="reset"].button-primary,
464 input[type="button"].button-primary {
465   color: #FFF;
466   background-color: #33C3F0;
467   border-color: #33C3F0; }
468 .button.button-primary:hover,
469 button.button-primary:hover,
470 input[type="submit"].button-primary:hover,
471 input[type="reset"].button-primary:hover,
472 input[type="button"].button-primary:hover,
473 .button.button-primary:focus,
474 button.button-primary:focus,
475 input[type="submit"].button-primary:focus,
476 input[type="reset"].button-primary:focus,
477 input[type="button"].button-primary:focus {
478   color: #FFF;
479   background-color: #1EAEDB;
480   border-color: #1EAEDB; }
481
482
483 /* Forms
484 –––––––––––––––––––––––––––––––––––––––––––––––––– */
485 input[type="email"],
486 input[type="number"],
487 input[type="search"],
488 input[type="text"],
489 input[type="tel"],
490 input[type="url"],
491 input[type="password"],
492 textarea,
493 select {
494   height: 38px;
495   padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
496   background-color: #fff;
497   border: 1px solid #D1D1D1;
498   border-radius: 4px;
499   box-shadow: none;
500   box-sizing: border-box; }
501 /* Removes awkward default styles on some inputs for iOS */
502 input[type="email"],
503 input[type="number"],
504 input[type="search"],
505 input[type="text"],
506 input[type="tel"],
507 input[type="url"],
508 input[type="password"],
509 textarea {
510   -webkit-appearance: none;
511      -moz-appearance: none;
512           appearance: none; }
513 textarea {
514   min-height: 65px;
515   padding-top: 6px;
516   padding-bottom: 6px; }
517 input[type="email"]:focus,
518 input[type="number"]:focus,
519 input[type="search"]:focus,
520 input[type="text"]:focus,
521 input[type="tel"]:focus,
522 input[type="url"]:focus,
523 input[type="password"]:focus,
524 textarea:focus,
525 select:focus {
526   border: 1px solid #33C3F0;
527   outline: 0; }
528 label,
529 legend {
530   display: block;
531   margin-bottom: .5rem;
532   font-weight: 600; }
533 fieldset {
534   padding: 0;
535   border-width: 0; }
536 input[type="checkbox"],
537 input[type="radio"] {
538   display: inline; }
539 label > .label-body {
540   display: inline-block;
541   margin-left: .5rem;
542   font-weight: normal; }
543