-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
100 lines (83 loc) · 1.24 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
color: #333;
font-size: 12px;
}
#container {
margin: 40px;
height: 720px;
}
.timeline {
float: left;
width: 60px;
display: block;
height: 100%;
}
.eventpanel {
padding: 0 10px;
margin-left: 70px;
border-left: 1px solid #CCC;
background-color: #ECECEC;
width: 600px;
height: 100%;
}
.timeline div {
height: 30px;
position: relative;
font-size: 9px;
color: #CECECE;
text-align: right;
}
.timeline .hourly {
top: -8px;
}
.timeline .half {
top: -5px;
}
.timeline .hourly .time{
font-weight: bold;
font-size: 13px;
color: #686868;
}
.timeline .apm {
margin-left: 4px;
}
.timeline .half .apm{
display: none;
}
.eventpool {
position: relative;
height: 100%;
}
.event {
position: absolute;
overflow: hidden;
}
.event .vbar {
float: left;
height: 100%;
width: 4px;
background-color: #4B6EA8;
}
.event .contentWrapper {
border: 1px solid #CCC;
border-left: none;
background-color: #FFF;
height: 100%;
box-sizing: border-box;
}
.event .content {
margin: 10px;
}
.event .content h1 {
color: #4B6EA8;
font-size: 11px;
}
.event .content p {
color: #CCC;
font-size: 9px;
}