-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (56 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
56 lines (56 loc) · 1.02 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
.calDay {
float: left;
font-family: 'Freight Sans Bold', 'lucida grande', tahoma, verdana, arial, sans-serif;
}
.calDay ul {
list-style-type: none;
margin: 0;
float: left;
}
.calDay ul.hours {
padding: 0 5px;
height: 750px;
}
.calDay ul.hours li {
height: 3.300em;
color: #9197a3;
font-size: 9px;
text-align: right;
line-height: 18px;
}
.calDay ul.hours li span {
color: #4e5665;
font-weight: 700;
font-size: 1.375em;
margin-right: 3px;
}
.calDay ul.events {
width: 600px;
height: 720px;
padding: 0 10px;
margin: 6px 0;
background-color: #e9eaed;
border-left: 1px solid #cdcfd6;
display: flex;
flex-direction: row;
flex-wrap: wrap;
position: relative;
}
.calDay ul.events li {
position: absolute;
background-color: #fff;
border: 1px solid #cdcfd6;
border-left: 3px solid #3b5998;
padding: 5px;
font-size: 9px;
flex-shrink: 3;
}
.calDay ul.events li h3 {
color: #4c70ba;
font-size: 1.375em;
margin: 2px 0;
}
.calDay ul.events li h4 {
color: #e9eaed;
margin: 2px 0;
}