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