-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calendar.css
54 lines (42 loc) · 894 Bytes
/
Calendar.css
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
.calendar{
display: grid;
grid-template-columns: repeat(7, 1fr);
max-width: 1024px;
width: 100%;
background-color: rgba(110, 231, 183,0.5);
}
.calendar-labels {
display: grid;
grid-template-columns: repeat(7, 1fr);
max-width: 1024px;
width: 100%;
background-color: rgba(110, 231, 183,0.5);
}
.calendar-labels > * {
text-align: center;
background-color: aquamarine;
}
.calendar > *{
align-items: center;
display: flex;
justify-content: center;
}
.calendar > *::before{
content: "";
display: inline-block;
height: 0;
padding-bottom: 100%;
width: 1px;
}
p {
color:black;
}
.today{
border: 2px solid green;
background-color: yellow;
font-weight: bold;
border-radius: 100%;
}
.days {
color: white;
}