blob: 47bf506b53d8087ab72eccb6d4f25f20b856207f (
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
|
:root {
--primary-color: #e2e9d9;
--calendar-border: black;
}
* {
margin: 0;
padding: 0;
}
.calendar-wrapper {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
}
.calendar {
border: var(--calendar-border) solid 1px;
border-spacing: 0;
}
.calendar>caption {
border: var(--calendar-border) solid 1px;
border-bottom: none;
background: var(--primary-color);
}
.calendar td,
.calendar th {
border: var(--calendar-border) solid 1px;
border-left: unset;
border-top: unset;
padding: 2px;
text-align: center;
}
.calendar td:last-child,
.calendar th:last-child {
border-right: unset;
}
.calendar tr:last-child td {
border-bottom: unset;
}
|