forked from RallyCommunity/HierarchicalCardBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
86 lines (72 loc) · 1.23 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
.leftSide {
float: left;
width: 25%;
}
.leftSide .treeItem .pill .textContent {
margin-right: 0;
}
.rightSide {
float: right;
width: 75%;
border-left: solid #AAA 1px;
}
.southSide {
clear: both;
width: 100%;
height: 400px;
}
.artifactHolder {
height: 400px;
border: 1px solid black;
border-radius: 15px;
}
@-moz-keyframes flipDown {
from {
-moz-transform: rotateX(0deg);
opacity: 1.0;
}
35% {
opacity: 0.0;
}
to {
-moz-transform: rotateX(360deg);
opacity: 1.0;
}
}
@-webkit-keyframes flipDown {
from {
-webkit-transform: rotateX(0deg);
opacity: 1.0;
}
35% {
opacity: 0.0;
}
to {
-webkit-transform: rotateX(360deg);
opacity: 1.0;
}
}
@-keyframes flipDown {
from {
transform: rotateX(0deg);
opacity: 1.0;
}
35% {
opacity: 0.0;
}
to {
transform: rotateX(360deg);
opacity: 1.0;
}
}
.flipDown{
-moz-animation-duration: 5s;
-webkit-animation-duration: 5s;
animation-duration: 5s;
-moz-animation-name: flipDown;
-webkit-animation-name: flipDown;
animation-name: flipDown;
-moz-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}