blob: b85f9f5c79e7018ed7c706f8605b6c63a5a40a1c (
plain)
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
|
:root {
--primary-color: #e2e9d9;
--table-border: #a8a8a8;
--message-alt-background: #eeeeee;
}
* {
margin: 0;
padding: 0;
}
body {
padding: 8px;
}
.calendar-wrapper {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
}
table {
border: var(--table-border) solid 1px;
border-spacing: 0;
}
table caption {
border: var(--table-border) solid 1px;
border-bottom: none;
background: var(--primary-color);
}
table td,
table th {
border: var(--table-border) solid 1px;
border-left: unset;
border-top: unset;
padding: 2px;
}
table.calendar td,
table.calendar th {
text-align: center;
}
table td:last-child,
table th:last-child {
border-right: unset;
}
table tr:last-child td {
border-bottom: unset;
}
.message {
font-size: 16px;
font-family: monospace;
}
.message:nth-child(even) {
background: var(--message-alt-background);
}
.message .nick {
text-align: right;
text-shadow: 1px 1px 1px black;
}
|