-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfact-client.css
More file actions
60 lines (51 loc) · 1.36 KB
/
fact-client.css
File metadata and controls
60 lines (51 loc) · 1.36 KB
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
fact-stream-list md-item.active md-item-content p,
fact-stream-list md-item.active md-item-content h3 {
font-weight: bold;
}
fact-stream-list fact-simple-slideshow {
width: 56px;
height: 56px;
}
fact-stream-list fact-simple-slideshow depiction {
width: 50px;
height: 50px;
top: 3px;
left: 3px;
overflow: hidden;
background-color: transparent;
border-radius: 50%;
}
fact-simple-slideshow {
display: block;
position: relative;
}
fact-simple-slideshow depiction {
position: absolute;
display: block;
}
fact-simple-slideshow depiction img {
width: 100%;
}
fact-simple-slideshow depiction.ng-hide-add,
fact-simple-slideshow depiction.ng-hide-remove {
/* this is required as of 1.3x to properly
apply all styling in a show/hide animation */
transition:0s linear all;
}
fact-simple-slideshow depiction.ng-hide {
line-height:0;
opacity:0;
}
/* fade effect */
fact-simple-slideshow depiction.fade.ng-hide-add-active,
fact-simple-slideshow depiction.fade.ng-hide-remove-active {
/* the transition is defined in the active class */
transition:1s cubic-bezier(.55,0,.1,1) all;
}
/* rotate effect */
fact-simple-slideshow depiction.rotate.ng-hide-add-active,
fact-simple-slideshow depiction.rotate.ng-hide-remove-active {
/* the transition is defined in the active class */
transform: rotate(360deg);
transform: 1s cubic-bezier(.55,0,.1,1) all;
}