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
|
.calendar-listing>p {
white-space: pre-wrap;
cursor: pointer;
position: relative;
display: block;
margin: 2px 0 0 0;
padding: 0.5em 0.2em 0.5em 0.7em;
min-height: 0;
background-color: rgb(22,22,22);
background: linear-gradient(
rgb(20,20,20),
rgb(25,25,25) 60%,
rgb(17,17,17)
);
min-width: 0;
border-radius: 0.4em;
}
.calendar-listing>p.onetime {
background-color: rgb(50,50,100);
background: linear-gradient(
rgb(50,50,100),
rgb(60,60,120) 60%,
rgb(45,45,90)
);
}
.calendar-listing .date {
font-size: 0.8em;
}
.calendar-head .name:before {
content: '\A';
}
.calendar-listing .name {
font-weight: bold;
}
.calendar-listing>div {
margin: 2px 0 0 0;
padding: 0.5em 0.2em 0.1em 0.7em;
}
.tabcal-cell {
font-size: 0.75em;
border-left: 1px solid #1c1e22 ! important;
border-right: 1px solid #1c1e22 ! important;
border-bottom: 1px solid #1c1e22 ! important;
}
.tabcal-day {
text-align: right;
}
.tabcal-cell>p {
font-size: 1.3em;
}
.tabcal-cell>ul {
padding-left: 10px;
margin-bottom: 0px;
}
.tabcal-today {
background-color: rgb(46,100,20);
}
.tabcal-cell>ul>li.onetime {
background: rgb(70,70,180);
border-radius: 4px;
}
.tabcal-cell>ul>li {
padding-left: 4px;
}
.tabcalendar-event-details .name {
font-weight: bold;
}
.tabcalendar-event-details .date {
font-size: 0.8em;
}
.tabcalendar-event-details {
margin-bottom: 10px;
border: 2px solid #303030;
border-radius: 4px;
padding: 4px;
padding-left: 8px;
}
|