Bedienoberfläche für Webradio
ulrich
2018-01-02 f927ec07c0f7db7310e0563f047ef8e92592d53f
commit | author | age
623a61 1 html, body {
U 2   font-size: 10pt;
3   /* font-size: 1.5em; */   /* currently ems cause chrome bug misinterpreting rems on body element */
4   line-height: 1.6;
5   font-weight: 400;
851c9c 6   /* font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; */
623a61 7 }
U 8
9 .nord {
851c9c 10   display: flex;
U 11   flex-flow: row;
623a61 12   height: 2em;
U 13 }
14
15 .west {
16   transition: all 0.3s ease-in;
17   overflow: hidden;
18   white-space: nowrap;
19 }
20
21 #app-titel {
22   padding-left: 2em;
23 }
24
25 .pointer-cursor {
26   cursor: pointer;
27 }
28
29 .zentrum {
30   display: flex;
31   flex-flow: row;
32   margin: 0;
33 }
34
851c9c 35 /* fonts */
623a61 36
U 37 @font-face {
851c9c 38     font-family: 'Amethysta';
U 39     font-style: normal;
40     font-weight: 700;
41     src: url(/lib/fonts/Amethysta/Amethysta-Regular.ttf) format('truetype');
623a61 42 }
851c9c 43 @font-face {
U 44     font-family: 'Oswald';
45     font-style: normal;
46     font-weight: 700;
47     src: url(/lib/fonts/Oswald/Oswald-Regular.ttf) format('truetype');
48 }
49 @font-face {
50     font-family: 'OswaldBold';
51     font-weight: bold;
52     src: url(/lib/fonts/Oswald/Oswald-Bold.ttf) format('truetype');
53 }
54 @font-face {
55     font-family: 'RobotoCondensed';
56     font-weight: normal;
57     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype');
58 }
59 @font-face {
60     font-family: 'RobotoCondensedBold';
61     font-weight: bold;
62     src: url(/lib/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype');
63 }