-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_calendar.css
More file actions
54 lines (54 loc) · 937 Bytes
/
Copy pathexample_calendar.css
File metadata and controls
54 lines (54 loc) · 937 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
.container_wrap{
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 400px;
height: 310px;
text-align: center;
background-color: #DCE2F0;
border-radius: 10px;
}
.container p{
margin-top: 5px;
margin-bottom: 0;
}
.container p .left,.container p .right{
font-size: 24px;
font-weight: 500;
cursor: pointer;
}
.container p .yearMonth_display{
font-size: 20px;
font-weight: 600;
color: #3F73AF;
padding-left: 30px;
padding-right: 30px;
}
.container table{
margin: auto;
width: 380px;
font-size: 16px;
font-weight: 600;
color: #666;
}
.container .week{
height: 40px;
}
.container .week td{
width: 54px;
}
.container .week .sun{
color: red;
}
.container .week_display tr{
height: 35px;
}
.container .week_display tr td:nth-child(1){
color: red;
}
.today{
background-color: blue;
color: white;
}