-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.css
102 lines (84 loc) · 1.98 KB
/
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
93
94
95
96
97
98
99
100
101
102
/*
Author : James La Broy
*/
@font-face {
font-family: 'Flat-UI-Icons';
src: url('fonts/flat-ui-icons-regular.eot');
src: url('fonts/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'),
url('fonts/flat-ui-icons-regular.woff') format('woff'),
url('fonts/flat-ui-icons-regular.ttf') format('truetype'),
url('fonts/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg');
}
.calendar {
position: relative;
display: inline-block;
background-color: #ebeded;
border-radius: 3px;
border-bottom: 3px solid #d4d7da;
color: #35495e;
font-family: "HelveticaNeueLight","HelveticaNeue-Light","Helvetica Neue Light","HelveticaNeue","Helvetica Neue",'TeXGyreHerosRegular',"Helvetica","Tahoma","Geneva","Arial",sans-serif;
font-weight: 300;
}
.calendar .calendar-header {
background-color: #e64c3c;
color: #fff;
border-bottom: 3px solid #c03a2b;
border-radius: 3px 3px 0 0;
padding: 10px;
text-align: center;
}
.calendar .calendar-header .next {
margin-top: 2px;
cursor: pointer;
float:right;
}
.calendar .calendar-header .previous {
margin-top: 2px;
cursor: pointer;
float:left;
}
.calendar table {
margin: 5px;
}
.calendar table th {
font-size: 12px;
}
.calendar tr {
background-color: transparent !important;
}
.calendar table td {
width: 25px;
height: 27px;
font-size: 12px;
padding: 0;
}
.calendar table td:not(.filled) {
height: 0;
}
.calendar .day {
text-align: center;
}
.calendar .month {
text-align: center;
display: inline-block;
margin-right: 10px;
}
.calendar .year {
text-align: center;
display: inline-block;
}
.calendar .selected {
background-color: #d4d7da;
border-radius: 3px;
}
.calendar .filled {
cursor: pointer;
}
.fa-left:before {
content: "\e606";
font-family: 'Flat-UI-Icons';
}
.fa-right:before {
content: "\e607";
font-family: 'Flat-UI-Icons';
}