-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (43 loc) · 762 Bytes
/
styles.css
File metadata and controls
47 lines (43 loc) · 762 Bytes
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
* {
background: black;
}
ul.timeline li {
position: relative;
height: 3em;
color: #888;
font-size: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
ul.timeline li:before {
content: "";
display: inline-block;
height: 3em;
width: 1px;
background: #aaaa;
margin: 0;
padding: 0;
position: absolute;
left: -11px;
top: -0.4em;
z-index: -1;
}
ul.timeline:before {
content: "●";
display: inline-block;
margin: 0;
padding: 0;
position: relative;
left: -1em;
top: 0.1em;
color: #aaa;
}
ul.timeline:after {
content: "●";
display: inline-block;
margin: 0;
padding: 0;
position: relative;
left: -1em;
top: -1em;
color: #aaa;
}