Persoenliche Mediazentrale
ulrich
2021-04-05 a43e1a055018aab9590c88c45d8495f99bfb6254
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
a43e1a 132 .entity-liste {
U 133   list-style-type: none;
134 }
135
136 .entity-eintrag {
137   margin-top: 0.8rem;
138   margin-left: 0;
139   margin-right: 0;
140   margin-bottom: 0;
141 }
142
b379f5 143 /*
U 144 @media (min-width: 800px) {
145   .zentrum-behaelter {
146     padding: 0 1em 0 1em;
147   }
148   .zentrum-behaelter, .nord {
149     margin: 0 10% 0 10%;
150   }
151 }
152
153
154 /* von Skeleton */
155
156 /* Buttons
157 –––––––––––––––––––––––––––––––––––––––––––––––––– */
158 .button,
159 button,
160 input[type="submit"],
161 input[type="reset"],
162 input[type="button"] {
163   display: inline-block;
164   height: 38px;
165   padding: 0 30px;
166   color: #555;
167   text-align: center;
168   font-size: 11px;
169   font-weight: 600;
170   line-height: 38px;
171   letter-spacing: .1rem;
172   text-transform: uppercase;
173   text-decoration: none;
174   white-space: nowrap;
175   background-color: transparent;
176   border-radius: 4px;
177   border: 1px solid #bbb;
178   cursor: pointer;
179   box-sizing: border-box; }
180 .button:hover,
181 button:hover,
182 input[type="submit"]:hover,
183 input[type="reset"]:hover,
184 input[type="button"]:hover,
185 .button:focus,
186 button:focus,
187 input[type="submit"]:focus,
188 input[type="reset"]:focus,
189 input[type="button"]:focus {
190   color: #333;
191   border-color: #888;
192   outline: 0; }
193 .button.button-primary,
194 button.button-primary,
195 input[type="submit"].button-primary,
196 input[type="reset"].button-primary,
197 input[type="button"].button-primary {
198   color: #FFF;
199   background-color: #33C3F0;
200   border-color: #33C3F0; }
201 .button.button-primary:hover,
202 button.button-primary:hover,
203 input[type="submit"].button-primary:hover,
204 input[type="reset"].button-primary:hover,
205 input[type="button"].button-primary:hover,
206 .button.button-primary:focus,
207 button.button-primary:focus,
208 input[type="submit"].button-primary:focus,
209 input[type="reset"].button-primary:focus,
210 input[type="button"].button-primary:focus {
211   color: #FFF;
212   background-color: #1EAEDB;
213   border-color: #1EAEDB; }
214
215
216 /* Forms
217 –––––––––––––––––––––––––––––––––––––––––––––––––– */
218 input[type="email"],
219 input[type="number"],
220 input[type="search"],
221 input[type="text"],
222 input[type="tel"],
223 input[type="url"],
224 input[type="password"],
225 textarea,
226 select {
227   height: 38px;
228   padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
229   background-color: #fff;
230   border: 1px solid #D1D1D1;
231   border-radius: 4px;
232   box-shadow: none;
233   box-sizing: border-box; }
234 /* Removes awkward default styles on some inputs for iOS */
235 input[type="email"],
236 input[type="number"],
237 input[type="search"],
238 input[type="text"],
239 input[type="tel"],
240 input[type="url"],
241 input[type="password"],
242 textarea {
243   -webkit-appearance: none;
244      -moz-appearance: none;
245           appearance: none; }
246 textarea {
247   min-height: 65px;
248   padding-top: 6px;
249   padding-bottom: 6px; }
250 input[type="email"]:focus,
251 input[type="number"]:focus,
252 input[type="search"]:focus,
253 input[type="text"]:focus,
254 input[type="tel"]:focus,
255 input[type="url"]:focus,
256 input[type="password"]:focus,
257 textarea:focus,
258 select:focus {
259   border: 1px solid #33C3F0;
260   outline: 0; }
261 label,
262 legend {
263   display: block;
264   margin-bottom: .5rem;
265   font-weight: 600; }
266 fieldset {
267   padding: 0;
268   border-width: 0; }
269 input[type="checkbox"],
270 input[type="radio"] {
271   display: inline; }
272 label > .label-body {
273   display: inline-block;
274   margin-left: .5rem;
275   font-weight: normal; }