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