-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.css
More file actions
70 lines (61 loc) · 1007 Bytes
/
index.css
File metadata and controls
70 lines (61 loc) · 1007 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.clps i{
margin-right:4px;
position: relative;
margin-top:-1px
}
.clps__title{
font-weight: 300;
display:inline-block;
transition:all 0.2s ease;
color:#5A5A5A;
margin:10px 0 20px 0
}
.clps__title:hover, .clps__title:focus{
transition:color 0.2s ease;
color:gray;
text-decoration: none
}
.clps--expanded .clps__title{
color:gray;
}
.clps__content{
display:inline-block;
width:100%;
position:relative;
margin-bottom:10px
}
/* Animation */
.clps__content.ng-hide-remove,
.clps__content.ng-hide-add,
.clps__content.ng-hide-add-active,
.clps__content.ng-hide-remove-active {
transition: all .2s ease
}
.clps__content.ng-hide-add {
opacity: 1;
animation: .2s fadeOut
}
.clps__content.ng-hide-remove {
opacity: 1;
animation: .2s fadeInUp
}
@keyframes fadeInUp {
0% {
opacity: 0;
bottom: -10px
}
100% {
opacity: 1;
bottom: 0
}
}
@keyframes fadeOut {
0% {
opacity: 1;
bottom: 0
}
100% {
opacity: 0;
bottom: -10px
}
}