forked from sebastianknopf/jQuery-Calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendar.css
92 lines (81 loc) · 1.7 KB
/
jquery.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
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
/*
* jQuery-Calendar Plugin v1.1.0
*
* 2018 (c) Sebastian Knopf
* This software is licensed under the MIT license!
* View LICENSE.md for more information
*/
.calendar {
box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
font: 13px/1.5 "Helvetica Neue", Helvatica, Arial, san-serif;
display: table;
width: 100%;
}
.calendar header {
cursor: default;
height: 40px;
position: relative;
font-weight: bold;
text-transform: uppercase;
}
.calendar header span {
display: inline-block;
line-height: 40px;
}
.calendar header .button {
width: 40px;
text-align: center;
position: absolute;
cursor: pointer;
}
.calendar header .left.button {
left:0;
}
.calendar header .right.button {
right:0;
top:0;
}
.calendar header .header-label {
letter-spacing: 1px;
width: 100%;
text-align: center;
cursor: pointer;
}
.calendar table {
background:#fff;
border-collapse: collapse;
}
.calendar table td {
color:#2b2b2b;
width:30px;
height:30px;
line-height:30px;
text-align:center;
border:1px solid #e6e6e6;
cursor:default;
}
.calendar thead th {
height:26px;
line-height: 26px;
text-transform:uppercase;
font-size:90%;
color:#9e9e9e;
}
.calendar thead th:not(:last-child) {
border-right:1px solid #fff;
}
.calendar .calendar-frame table {
width: 100%;
}
.calendar .calendar-frame tbody td.today {
background:#eee;
color:#555;
}
.calendar .calendar-frame tbody td:not(.disabled).selected {
background:#eee;
color:#555;
}
.calendar .calendar-frame tbody td:not(.disabled):hover {
color: #fff;
background: #555;
cursor: pointer;