-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
88 lines (80 loc) · 1.34 KB
/
app.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
/*------ TIMELINE SHIZZLE -------*/
.timeline-circles:hover{
cursor: pointer;
}
.timeline-container{
text-align: center;
min-width: 800px;
display: table;
width: 800px;
margin: auto;
z-index: 700;
}
.timeline-circles-not-first{
position: relative;
left: -5px;
}
.timeline-container > div{
display: table-cell;
border-spacing: 0px;
border-collapse: separate;
}
.timeline-reached{
color: white;
}
.timeline-not-reached-connector {
width: 150px;
border-bottom: 3px dashed #e2e2e2;
position: relative;
left: -4px;
}
.timeline-reached-connector{
width: 150px;
border-bottom: 3px solid #e2e2e2;
position: relative;
left: -4px;
}
span{
display: inline-block;
vertical-align: middle;
}
.div2{
position: relative;
left:-5px;
}
.div3{
position: relative;
left:-10px;
}
.div4{
position: relative;
left:-15px;
}
.div5{
position: relative;
left:-20px;
}
.test{
position: absolute;
top:10%;
left:70%;
}
.test2{
position: absolute;
top:60%;
left:20%;
}
.fade-element-in.ng-enter {
transition: 0.8s linear all;
opacity: 0;
}
.fade-element-in.ng-enter.ng-enter-active {
opacity: 1;
}
.fade-element-in.ng-leave {
transition: 0.3s linear all;
opacity: 1;
}
.fade-element-in.ng-leave.ng-leave-active {
opacity: 0;
}