-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpretty-calendar.css
117 lines (105 loc) · 1.9 KB
/
pretty-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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.directionNav {
position: absolute;
height: 95%;
width: 5%;
top: 0;
left: 0;
background-color: #eee;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
}
.directionNav:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
.directionLabel {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
font-weight: bold;
font-size: 2em;
color: #c0c0c0;
}
#calendar {
margin-left: 50px;
right: 0;
top: 0;
height: 100%;
}
.day {
height: 100%;
margin: 0;
position: relative;
top: 0;
width: 14.28%;
/* min-width: 100px; */
float: left;
outline: 1px solid #eee;
}
.sep {
position: relative;
height: 4.16%;
width: 100%;
left: 0;
top: 0;
outline: 1px dotted #eee;
}
.sep:hover {
background-color: #eee;
}
.dayName {
text-align: center;
font-weight: bold;
font-size: 1em;
}
.dayName:hover {
background-color: white !important;
}
#wrapper {
width: 100%;
height: 95%;
left: 0;
top: 0;
outline: 2px solid #c0c0c0;
}
#sidebar {
float: left;
left: 0;
top: 0;
height: 100%;
width: 50px;
}
.timeLabel {
position: relative;
height: 8.32%;
width: 100%;
line-height: 4em;
left: 0;
top: 0;
text-align: center;
font-size: 1em;
outline: 1px dotted #eee;
}
.event {
width: 100%;
height: auto;
background-color: #c0c0c0;
position: absolute;
top: 4.16%;
left: 0px;
color: white;
padding: 4px;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 1em;
moz-border-radius: 1em;
}