Calendar.css
950 Bytes
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
.Month,
.Week {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.Grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
overflow-y: scroll;
height: calc(100vh - 115px);
border: solid thin gray;
}
.Row {
display: flex;
overflow-y: scroll;
height: calc(100vh - 115px);
border: solid thin gray;
}
.Day {
display: flex;
flex-direction: column;
flex-grow: 1;
overflow-y: scroll;
height: calc(100vh - 80px);
border: solid thin gray;
margin-top: 5px;
}
/* Common */
.GridItem,
.GridHeadItem {
flex-basis: 100px;
flex-grow: 1;
}
.GridItem {
border: solid thin lightgray;
display: flex;
flex-direction: column;
/* height: 150px; */
padding: 5px;
}
.GridHeadItem {
height: 20px;
text-align: center;
line-height: 20px;
padding: 10px 5px 10px 5px;
}
.GridHead {
display: flex;
}
.GridHead {
margin-right: 16.8px;
}
.GridItem[relative] > span {
color: gray;
}