-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmain.css
More file actions
105 lines (105 loc) · 2.15 KB
/
main.css
File metadata and controls
105 lines (105 loc) · 2.15 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html{
height: 100%;
}
body{
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.calendar{
position: relative;
display: flex;
}
.calendar .mLeft .ctrl{
display: flex;
font-size: 16px;
align-items: center;
}
.calendar .mLeft .ctrl .btnMonth{
cursor: pointer;
}
.calendar .mLeft .ctrl .btnMonth:hover{
color: rgb(243, 187, 18);
}
.calendar .mLeft .info{
padding-left: 10px;
padding-right: 10px;
vertical-align: top;
}
.calendar .mRight .info{
font-size: 12px;
margin-left: 4px;
}
.calendar .line{
position: relative;
display: flex;
width: 290px;
flex-wrap: wrap
}
.calendar .line .day{
position: relative;
font-size: 12px;
width: 40px;
height: 40px;
text-align: center;
}
.calendar .line .date{
font-size: initial;
display: flex;
justify-content: center;
align-items: center;
user-select: none;
/* background-color: rgb(245, 235, 235); */
border-radius: 50%;
}
.calendar .line .date{
cursor: pointer;
}
.calendar .line .date:hover{
background-color: rgb(243, 210, 210);
border-radius: 50%;
}
.calendar .line .disabled{
cursor: not-allowed;
background-color: rgb(222, 218, 218);
color: rgb(163, 163, 163);
}
.calendar .line .started{
background-color: rgb(244, 96, 96);
color: rgb(252, 237, 237);
}
.calendar .line .disabled:hover{
background-color: rgb(222, 218, 218);
color: rgb(163, 163, 163);
}
.calendar .line .selectedStart{
background-color: rgb(244, 96, 96);
color: rgb(252, 237, 237);
border-radius: 50% 0 0 50%;
}
.calendar .line .selectedStart:hover{
background-color: rgb(243, 210, 210);
color: rgb(252, 237, 237);
border-radius: 50% 0 0 50%;
}
.calendar .line .selectedInclude{
background-color: rgb(244, 96, 96);
color: rgb(252, 237, 237);
border-radius: 0;
}
.calendar .line .selectedInclude:hover{
background-color: rgb(243, 210, 210);
color: rgb(252, 237, 237);
border-radius: 0;
}
.calendar .line .selectedEnd{
background-color: rgb(244, 96, 96);
color: rgb(252, 237, 237);
border-radius: 0 50% 50% 0;
}
.calendar .line .selectedEnd:hover{
background-color: rgb(243, 210, 210);
color: rgb(252, 237, 237);
border-radius: 0 50% 50% 0;
}