forked from 10KB/angular-clndr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-clndr.css
50 lines (49 loc) · 1.47 KB
/
angular-clndr.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
.clndr {
display: block;
margin: 0 auto;
max-width: 400px; }
.clndr .clndr-controls {
border-bottom: 1px solid #ccc;
position: relative; }
.clndr .clndr-controls .month {
padding: 12px 0;
text-align: center; }
.clndr .clndr-controls .clndr-previous-button, .clndr .clndr-controls .clndr-next-button {
cursor: pointer;
top: 0px;
left: 0px;
padding: 12px;
position: absolute; }
.clndr .clndr-controls .clndr-next-button {
left: auto;
right: 0px; }
.clndr .clndr-grid .days-of-the-week {
width: 100%; }
.clndr .clndr-grid .days-of-the-week .header-day {
float: left;
width: 14.28571%;
padding: 12px 0;
text-align: center; }
.clndr .days .day, .clndr .days .empty {
float: left;
width: 14.28571%;
padding: 12px 0;
position: relative;
text-align: center; }
.clndr .days .day.today, .clndr .days .empty.today {
background-color: #ccc; }
.clndr .days .day .event-indicator, .clndr .days .empty .event-indicator {
background-color: #3BB7E8;
border-radius: 100%;
color: #fff;
cursor: pointer;
font-size: 9px;
height: 15px;
line-height: 16px;
position: absolute;
right: 0px;
top: 0px;
width: 15px; }
.clndr .days .day.adjacent-month, .clndr .days .day.inactive, .clndr .days .empty.adjacent-month, .clndr .days .empty.inactive {
opacity: 0.3; }
/*# sourceMappingURL=angular-clndr.css.map */