Bedienoberfläche für Webradio
ulrich
2018-01-06 f9c6e25755d0dcbd59930c3c043a4068d212a5f1
commit | author | age
9f0d54 1
df379b 2 /*
U 3   app-layout anfang
4
5   Aus dem app-layout-Projekt übernommen und
6   teilweise angepasst
7 */
9f0d54 8
623a61 9 html, body {
9f0d54 10   margin: 0;
U 11   padding: 0;
12   height: 100%; /* Anmerkung 2 */
13   font-size: initial;
623a61 14   /* font-size: 1.5em; */   /* currently ems cause chrome bug misinterpreting rems on body element */
U 15   line-height: 1.6;
16   font-weight: 400;
9f0d54 17   font-family: RobotoCondensed;
623a61 18 }
9f0d54 19 body {
U 20   min-height: 0; /* Anmerkung 1 */
21   display: flex;
22   flex-flow: column;
23 }
24 .inhalt {
851c9c 25   display: flex;
U 26   flex-flow: row;
9f0d54 27   height: 100%; /* Anmerkung 2 */
U 28   min-height: 0; /* Anmerkung 1 */
623a61 29 }
9f0d54 30 .nord {
U 31   background-color: lightgray;
32   display: flex;
33   flex-flow: row;
34   height: 1.6em;
35 }
36 .sued {
37   background-color: lightgray;
38 }
623a61 39 .west {
9f0d54 40   flex-grow: 0;
U 41   flex-shrink: 0;
df379b 42   flex-basis: 4em;
9f0d54 43   background-color: antiquewhite;
623a61 44   transition: all 0.3s ease-in;
U 45   overflow: hidden;
46   white-space: nowrap;
9f0d54 47   background-color: #f7f7f7;
623a61 48 }
9f0d54 49 .ost {
U 50   flex-grow: 0;
51   flex-shrink: 0;
52   flex-basis: 10em;
53   background-color: antiquewhite;
54 }
55 .zentrum {
56   display: flex;
57   flex-flow: row;
58   overflow-x: hidden;
59   margin: 0;
60 }
61
62 /*
63   Anmerkungen:
64   1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl.
65       http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto
66   2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles
67       immer ueber das gesamte Browserfenster ausdehnt.
68 */
69
df379b 70 /* app-layout ende */
623a61 71
U 72 #app-titel {
73   padding-left: 2em;
74 }
75
76 .pointer-cursor {
77   cursor: pointer;
78 }
79
9f0d54 80 .zentrum-behaelter {
623a61 81   display: flex;
9f0d54 82   flex-flow: column;
U 83 }
84
85 /* Dialogfeld */
86
87 .dialog {
88   position: relative;
89 }
90
dc0449 91 .dlg-behaelter {
U 92   padding: 0.4em;
93 }
94
95 .dlg-info {
96   background-color: #dcf2fb; // blau
97   padding: 0.4em;
98 }
99
100 .nachricht {
101   background-color: #fffbde; // gelb
102 }
103
104 .form-button-footer {
105   text-align: right;
106 }
107
ffc872 108 .dlg-sender-edit, .dlg-sender-neu {
U 109   background-color: #f6f6f6; // grau
dc0449 110 }
9f0d54 111
e6c850 112 .sender-edit-label {
U 113   display: inline-block;
114   width: 3em;
115   text-align: right;
116 }
117
118 .sender-eingabe {
119   width: 80%;
120 }
121
9f0d54 122 /*
U 123   Close Button
124
125   <div>
126     <span class="close-btn">&#10006;</span>
127   </div>
128 */
129
130 .close-btn {
131   position: absolute;
132   top: 0px;
133   right: 0.4em;
623a61 134   margin: 0;
9f0d54 135   padding: 0;
U 136   font-size: 1.3em;
137   color: #b8b8b8;
36646e 138 }
U 139
47a970 140 /* Sender */
U 141
142 .sender-behaelter {
143   display: flex;
144   flex-flow: column;
145 }
146
147 .sender {
148   display: flex;
149   flex-flow: row;
150   padding: 0.4em;
151   flex-wrap: wrap;
152   background-color: #eaeaea;
153 }
154
155 .sender-kachel {
156   display: flex;
157   flex-flow: column;
158   align-items: center;
159   margin: 0.4em;
160   padding: 0.4em;
161   background-color: white;
136220 162   cursor: pointer;
47a970 163 }
U 164
165 .sender-name {
166   font-family: RobotoCondensedBold;
167 }
168
169 .sender-bild {
170   width: 5em;
171   background-color: #ebe6e6;
172 }
173
9f0d54 174 /* Menü-Erscheinung */
U 175
176 .app-menu-kopf {
177   font-family: Oswald;
178 }
179
851c9c 180 /* fonts */
623a61 181
U 182 @font-face {
851c9c 183     font-family: 'Amethysta';
U 184     font-style: normal;
185     font-weight: 700;
186     src: url(/lib/fonts/Amethysta/Amethysta-Regular.ttf) format('truetype');
623a61 187 }
851c9c 188 @font-face {
U 189     font-family: 'Oswald';
190     font-style: normal;
191     font-weight: 700;
192     src: url(/lib/fonts/Oswald/Oswald-Regular.ttf) format('truetype');
193 }
194 @font-face {
195     font-family: 'OswaldBold';
196     font-weight: bold;
197     src: url(/lib/fonts/Oswald/Oswald-Bold.ttf) format('truetype');
198 }
199 @font-face {
200     font-family: 'RobotoCondensed';
201     font-weight: normal;
202     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype');
203 }
204 @font-face {
205     font-family: 'RobotoCondensedBold';
206     font-weight: bold;
207     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype');
208 }