Persoenliche Mediazentrale
ulrich
2021-04-05 b1bf963e57050d6c423a80db76f9d36197a0b475
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;
27 }
28 .sued {
29   height: 1.5em;
30   overflow: hidden;
31   transition: all 0.3s ease-in;
32   background-color: lightgray;
33 }
34 .west {
35   flex-grow: 0;
36   flex-shrink: 0;
37   flex-basis: 4em;
38   background-color: white;
39   transition: all 0.3s ease-in;
40   overflow: hidden;
41   white-space: nowrap;
42 }
43 .ost {
44   flex-grow: 0;
45   flex-shrink: 0;
46   flex-basis: 6em;
47   transition: all 0.3s ease-in;
48   background-color: antiquewhite;
49   overflow: hidden;
50 }
51 .zentrum-behaelter {
52   display: flex;
53   flex-flow: column;
54   /* background-color: #eaeaea; */
55   width: 100%;
56 }
57
58 .zentrum {
59   width: 100%;
60   height: 100%;
61   overflow-x: hidden;
62   overflow-y: auto;
63   -webkit-overflow-scrolling: touch;
64 }
65
66 .zentraler-inhalt {
67   padding: 0.5em;
68 }
69
70 /*
71   Anmerkungen:
72   1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl.
73       http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto
74   2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles
75       immer ueber das gesamte Browserfenster ausdehnt.
76 */
77
78 .app-titel {
79   margin-left: 0.6em;
80   color: white;
81 }
82
83 .pointer-cursor {
84   cursor: pointer;
85 }
86
87 .dialog {
88   position: relative;
89   /* height: 0.1em; */
90   transition: all 0.3s ease-in;
91 }
92
93 .dlg-behaelter {
94   line-height: 1.6;
95   padding: 0.4em;
96 }
97
98 .dlg-info {
99   background-color: #dcf2fb; // blau
100   padding: 0.4em;
101 }
102
103 /*
104   Close Button
105
106   <div>
107     <span class="close-btn">&#10006;</span>
108   </div>
109 */
110
111 .close-btn {
112   position: absolute;
113   top: 0px;
114   right: 0.4em;
115   margin: 0;
116   padding: 0;
117   font-size: 1.3em;
118   color: #b8b8b8;
119 }
b379f5 120
U 121 /* ab hier Mediazentrale */
122
123 .entity-formular {
124   display: flex;
125   flex-flow: column;
126 }
127
128 .entity-element {
129   margin: 0.4rem;
130 }
131
132 /*
133 @media (min-width: 800px) {
134   .zentrum-behaelter {
135     padding: 0 1em 0 1em;
136   }
137   .zentrum-behaelter, .nord {
138     margin: 0 10% 0 10%;
139   }
140 }
141
142
143 /* von Skeleton */
144
145 /* Buttons
146 –––––––––––––––––––––––––––––––––––––––––––––––––– */
147 .button,
148 button,
149 input[type="submit"],
150 input[type="reset"],
151 input[type="button"] {
152   display: inline-block;
153   height: 38px;
154   padding: 0 30px;
155   color: #555;
156   text-align: center;
157   font-size: 11px;
158   font-weight: 600;
159   line-height: 38px;
160   letter-spacing: .1rem;
161   text-transform: uppercase;
162   text-decoration: none;
163   white-space: nowrap;
164   background-color: transparent;
165   border-radius: 4px;
166   border: 1px solid #bbb;
167   cursor: pointer;
168   box-sizing: border-box; }
169 .button:hover,
170 button:hover,
171 input[type="submit"]:hover,
172 input[type="reset"]:hover,
173 input[type="button"]:hover,
174 .button:focus,
175 button:focus,
176 input[type="submit"]:focus,
177 input[type="reset"]:focus,
178 input[type="button"]:focus {
179   color: #333;
180   border-color: #888;
181   outline: 0; }
182 .button.button-primary,
183 button.button-primary,
184 input[type="submit"].button-primary,
185 input[type="reset"].button-primary,
186 input[type="button"].button-primary {
187   color: #FFF;
188   background-color: #33C3F0;
189   border-color: #33C3F0; }
190 .button.button-primary:hover,
191 button.button-primary:hover,
192 input[type="submit"].button-primary:hover,
193 input[type="reset"].button-primary:hover,
194 input[type="button"].button-primary:hover,
195 .button.button-primary:focus,
196 button.button-primary:focus,
197 input[type="submit"].button-primary:focus,
198 input[type="reset"].button-primary:focus,
199 input[type="button"].button-primary:focus {
200   color: #FFF;
201   background-color: #1EAEDB;
202   border-color: #1EAEDB; }
203
204
205 /* Forms
206 –––––––––––––––––––––––––––––––––––––––––––––––––– */
207 input[type="email"],
208 input[type="number"],
209 input[type="search"],
210 input[type="text"],
211 input[type="tel"],
212 input[type="url"],
213 input[type="password"],
214 textarea,
215 select {
216   height: 38px;
217   padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
218   background-color: #fff;
219   border: 1px solid #D1D1D1;
220   border-radius: 4px;
221   box-shadow: none;
222   box-sizing: border-box; }
223 /* Removes awkward default styles on some inputs for iOS */
224 input[type="email"],
225 input[type="number"],
226 input[type="search"],
227 input[type="text"],
228 input[type="tel"],
229 input[type="url"],
230 input[type="password"],
231 textarea {
232   -webkit-appearance: none;
233      -moz-appearance: none;
234           appearance: none; }
235 textarea {
236   min-height: 65px;
237   padding-top: 6px;
238   padding-bottom: 6px; }
239 input[type="email"]:focus,
240 input[type="number"]:focus,
241 input[type="search"]:focus,
242 input[type="text"]:focus,
243 input[type="tel"]:focus,
244 input[type="url"]:focus,
245 input[type="password"]:focus,
246 textarea:focus,
247 select:focus {
248   border: 1px solid #33C3F0;
249   outline: 0; }
250 label,
251 legend {
252   display: block;
253   margin-bottom: .5rem;
254   font-weight: 600; }
255 fieldset {
256   padding: 0;
257   border-width: 0; }
258 input[type="checkbox"],
259 input[type="radio"] {
260   display: inline; }
261 label > .label-body {
262   display: inline-block;
263   margin-left: .5rem;
264   font-weight: normal; }