calendarLess.les
1.1 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
@import "../../less/variables";
.calendar_wrap{
width:100%;
font-size: 12px;
text-align:center;
tr{
height: auto;
}
.calendar_week_head{
tr{
line-height: 40px;
height: 40px;
}
td{
width:65px;
color:#818286;
font-size: 12px;
}
.week_day{
color:#BFBEC3;
}
}
.week_day{
color:#BFBEC3;
}
.day_wrap:hover{
background-color: rgba(64, 158, 255, 0.2);
}
.current_day:hover{
background-color: rgba(64, 158, 255, 1);
color:#fff;
}
.day_wrap{
cursor: pointer;
display: inline-block;
padding: 4px;
width: 25px;
text-align: center;
border-radius: 50%;
transition: all .3s;
color: #1e1f34;
}
.current_day{
background-color: rgba(64, 158, 255, 1);
color:#fff;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
border-color: transparent;
}
.week_day{
.day_wrap{
color: #BFBEC3;
}
.current_day{
color:#fff;
}
}
}
.bottom_wrap{
text-align:right;
margin-top: 40px;
margin-right: 16px;
}
.week_day_td_wrap{
margin-top:8px;
}
.week_day_nongli_wrap{
font-weight: lighter;
color: #BFBEC3;
}