commit | author | age
|
749d1b
|
1 |
/* |
U |
2 |
Kalender - Jahresuebersicht |
|
3 |
Copyright (C) 2022 Ulrich Hilger |
|
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU Affero General Public License as |
|
7 |
published by the Free Software Foundation, either version 3 of the |
|
8 |
License, or (at your option) any later version. |
|
9 |
|
|
10 |
This program is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
GNU Affero General Public License for more details. |
|
14 |
|
|
15 |
You should have received a copy of the GNU Affero General Public License |
|
16 |
along with this program. If not, see <https://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
/* |
|
19 |
Created on : 13.01.2022, 15:17:20 |
|
20 |
Author : Ulrich Hilger |
|
21 |
*/ |
|
22 |
|
|
23 |
html { |
|
24 |
margin: 0; |
|
25 |
padding: 0; |
|
26 |
height: 100%; /* Anmerkung 2 */ |
|
27 |
font-family: sans-serif; |
|
28 |
} |
|
29 |
body { |
|
30 |
margin: 0; |
|
31 |
padding: 0; |
|
32 |
height: 100%; /* Anmerkung 2 */ |
|
33 |
min-height: 0; /* Anmerkung 1 */ |
|
34 |
display: flex; |
|
35 |
flex-flow: column; |
|
36 |
/* margin: 0 auto 0 auto; */ |
|
37 |
|
|
38 |
font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
|
39 |
font-size: 1.2rem; |
|
40 |
font-weight: normal; |
|
41 |
line-height: 1.5; |
|
42 |
color: #292b2c; |
|
43 |
background-color: #fff; |
|
44 |
} |
|
45 |
.inhalt { |
|
46 |
display: flex; |
|
47 |
flex-flow: row; |
|
48 |
height: 100%; /* Anmerkung 2 */ |
|
49 |
min-height: 0; /* Anmerkung 1 */ |
|
50 |
} |
|
51 |
.nord { |
|
52 |
background-color: lightgray; |
|
53 |
} |
|
54 |
.sued { |
|
55 |
background-color: #efefef; |
|
56 |
text-align: center; |
|
57 |
font-size: smaller; |
|
58 |
color: #5a5a5a; |
|
59 |
} |
|
60 |
.west { |
|
61 |
flex-grow: 0; |
|
62 |
flex-shrink: 0; |
|
63 |
flex-basis: 10em; |
|
64 |
background-color: antiquewhite; |
|
65 |
} |
|
66 |
.ost { |
|
67 |
flex-grow: 0; |
|
68 |
flex-shrink: 0; |
|
69 |
flex-basis: 10em; |
|
70 |
background-color: antiquewhite; |
|
71 |
} |
|
72 |
.zentrum { |
|
73 |
width: 100%; |
|
74 |
height: 100%; |
|
75 |
overflow: auto; |
|
76 |
-webkit-overflow-scrolling: touch; |
|
77 |
} |
|
78 |
.zentrum-inhalt { |
|
79 |
padding: 0em 0.3rem 0 0.3rem; |
|
80 |
} |
|
81 |
.lipsum { |
|
82 |
color: lightgrey; |
|
83 |
} |
|
84 |
|
|
85 |
/* |
|
86 |
Anmerkungen: |
|
87 |
1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl. |
|
88 |
http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto |
|
89 |
2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles |
|
90 |
immer ueber das gesamte Browserfenster ausdehnt. |
|
91 |
*/ |
|
92 |
|
|
93 |
a { |
|
94 |
text-decoration: none; |
|
95 |
color: #00b2f9; |
|
96 |
} |
|
97 |
|
|
98 |
a:hover { |
|
99 |
color: #6cd5ff; |
|
100 |
} |
|
101 |
|
|
102 |
.zeit-titel { |
|
103 |
/* padding-left: 4em; */ |
|
104 |
/* color: white; */ |
|
105 |
} |
|
106 |
|