-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline_styles.css
69 lines (65 loc) · 993 Bytes
/
timeline_styles.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
* {
margin: 0;
padding: 0;
}
body {
background: #fff;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
}
.container {
width: 600px;
margin: auto;
}
#dates p {
display: none;
text-align: left;
margin-bottom: 5px;
}
#timeline {
height: 500px;
width: 500px;
border: 1px solid #000;
overflow: hidden;
margin: 10px auto;
text-align: center;
position: relative;
}
#timeline_lines {
width: 2643px;
position: relative;
cursor: move;
}
#timeline_marker {
position: absolute;
top: 0;
left: 0;
z-index: 9;
}
#timeline_background {
position: absolute;
top: 0;
left: 0;
z-index: 10;
}
#timeline_arrow {
position: absolute;
top: 210px;
right: -202px;
z-index: 11;
background: url('timeline_arrow.png') top right no-repeat;
height: 48px;
}
#timeline_shadow {
position: absolute;
top: 0;
right: 0;
z-index: 12;
pointer-events: none;
}
.yourtime {
font-size: 32px;
margin-bottom: 10px;
color: #c00;
}