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
| table.monatsbox {
| font-family:sans-serif;
| font-size:10pt;
| padding:0px;
| margin:0px;
| border-spacing:0px;
| border-collapse:collapse;
| -moz-user-select: none;
| -khtml-user-select: none;
| border: 0px solid grey;
| }
| td.monatsboxKopf {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| font-weight:bold;
| color:grey;
| font-size:8pt;
| }
| td.monatsboxKopfRuhetag {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| font-weight:bold;
| color:red;
| font-size:8pt;
| }
| td.monatsboxKopfWoche {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| font-weight:bold;
| color:silver;
| font-size:8pt;
| }
| td.monatsboxRumpf {
| padding-right:2px;
| padding-left:2px;
| cursor:default;
| text-align:center;
| vertical-align:middle;
| cursor: pointer;
| }
| td.monatsboxRumpfRuhetag {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| color:red;
| cursor: pointer;
| }
| td.monatsboxWoche {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| color:silver;
| }
| td.monatsboxGewaehlt {
| cursor:default;
| text-align:center;
| vertical-align:middle;
| background-color:yellow;
| font-weight:bold;
| }
| td.monatsboxFeiertag {
| cursor:default;
| font-weight:bold;
| color:grey;
| background-color: #ffef99;
| text-align:center;
| }
|
|