Bedienoberfläche für Webradio
ulrich
2018-01-05 df379b8b3ca964dc5b95369f1456f020817060bd
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
108 .dlg-sender-edit {
109   /* background-color: #f6f6f6; // grau */
110   background-color: #dcf2fb; // blau
111 }
9f0d54 112
U 113 /*
114   Close Button
115
116   <div>
117     <span class="close-btn">&#10006;</span>
118   </div>
119 */
120
121 .close-btn {
122   position: absolute;
123   top: 0px;
124   right: 0.4em;
623a61 125   margin: 0;
9f0d54 126   padding: 0;
U 127   font-size: 1.3em;
128   color: #b8b8b8;
36646e 129 }
U 130
47a970 131 /* Sender */
U 132
133 .sender-behaelter {
134   display: flex;
135   flex-flow: column;
136 }
137
138 .sender {
139   display: flex;
140   flex-flow: row;
141   padding: 0.4em;
142   flex-wrap: wrap;
143   background-color: #eaeaea;
144 }
145
146 .sender-kachel {
147   display: flex;
148   flex-flow: column;
149   align-items: center;
150   margin: 0.4em;
151   padding: 0.4em;
152   background-color: white;
153 }
154
155 .sender-name {
156   font-family: RobotoCondensedBold;
157 }
158
159 .sender-bild {
160   width: 5em;
161   background-color: #ebe6e6;
162 }
163
9f0d54 164 /* Menü-Erscheinung */
U 165
166 .app-menu-kopf {
167   font-family: Oswald;
168 }
169
851c9c 170 /* fonts */
623a61 171
U 172 @font-face {
851c9c 173     font-family: 'Amethysta';
U 174     font-style: normal;
175     font-weight: 700;
176     src: url(/lib/fonts/Amethysta/Amethysta-Regular.ttf) format('truetype');
623a61 177 }
851c9c 178 @font-face {
U 179     font-family: 'Oswald';
180     font-style: normal;
181     font-weight: 700;
182     src: url(/lib/fonts/Oswald/Oswald-Regular.ttf) format('truetype');
183 }
184 @font-face {
185     font-family: 'OswaldBold';
186     font-weight: bold;
187     src: url(/lib/fonts/Oswald/Oswald-Bold.ttf) format('truetype');
188 }
189 @font-face {
190     font-family: 'RobotoCondensed';
191     font-weight: normal;
192     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype');
193 }
194 @font-face {
195     font-family: 'RobotoCondensedBold';
196     font-weight: bold;
197     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype');
198 }