-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
114 lines (92 loc) · 1.7 KB
/
Copy pathstyle2.css
File metadata and controls
114 lines (92 loc) · 1.7 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
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
body {
font-family: "Tahoma";
}
header {
text-align: center;
background-color: #ffd599;
}
#calendar {
width: 100%;
}
#calendar ul {
list-style: none;
padding: 0;
margin: 0;
width: 100%;
}
#calendar li {
display: block;
float: left;
width:14.342%;
padding: 5px;
box-sizing:border-box;
border: 1px solid #ccc;
margin-right: -1px;
margin-bottom: -1px;
}
#calendar ul.weekdays {
height: 40px;
background: green;
}
#calendar ul.weekdays li {
text-align: center;
text-transform: uppercase;
line-height: 20px;
border: none !important;
padding: 10px 6px;
color: #fff;
font-size: 13px;
}
#calendar .days li {
height: 600px;
}
#calendar .days li:hover {
background: #d3d3d3;
}
#calendar .date {
font-size: 40px;
text-align: center;
margin-bottom: 5px;
padding: 4px;
background: white;
color:#666;
width: 40px;
}
#calendar .event {
clear: both;
display: block;
font-size: 13px;
border-radius: 4px;
padding: 5px;
margin-top: 40px;
margin-bottom: 5px;
line-height: 14px;
background: #e4f2f2;
border: 1px solid #b5dbdc;
color: #009aaf;
text-decoration: none;
}
#calendar .event-desc {
color: #666;
margin: 3px 0 7px 0;
text-decoration: none;
}
#calendar .other-month {
background: #f5f5f5;
color: #666;
}
@media(max-width: 768px) {
#calendar .weekdays, #calendar .other-month {
display: none;
}
#calendar li {
height: auto !important;
border: 1px solid #ededed;
width: 100%;
padding: 10px;
margin-bottom: -1px;
}
#calendar .date {
float: none;
}
}