-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.styl
More file actions
111 lines (98 loc) · 2.56 KB
/
index.styl
File metadata and controls
111 lines (98 loc) · 2.56 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.warp
width 100%
position relative
table
width 100%
td, th
border 1px solid #ddd
text-align center
vertical-align middle
tr:nth-child(even)
background #fafbfd
thead tr
background #ebecf0
input
border none
border 1px solid #ccc
line-height 32px
padding 0 0.5em
width 100%
font-size 13px
.tableLoading
position absolute
z-index 2
top 0
width 100%
height 100%
background-color rgba(0, 0, 0, 0.2)
text-align center
// .spinner
// width 60px
// height 60px
// background-color #fff
// transform translate(-50% + 30px, -50% + 30px)
// position absolute
// left calc(50% - 30px)
// top calc(50% - 30px)
// -webkit-animation rotateplane 1.2s infinite ease-in-out
// animation rotateplane 1.2s infinite ease-in-out
// @-webkit-keyframes rotateplane {
// 0% { -webkit-transform: perspective(120px) }
// 50% { -webkit-transform: perspective(120px) rotateY(180deg) }
// 100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
// }
// @keyframes rotateplane {
// 0% {
// transform: perspective(120px) rotateX(0deg) rotateY(0deg);
// -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
// } 50% {
// transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
// -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
// } 100% {
// transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
// -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
// }
// }
.spinner
width 50px
height 60px
text-align center
transform translate(-50%, -50%)
left calc(50% - 25px)
top calc(50%)
position absolute
font-size 10px
.spinner
div
background-color #fff
height 100%
width 5px
margin 0 1px
display inline-block
-webkit-animation stretchdelay 1.2s infinite ease-in-out
animation stretchdelay 1.2s infinite ease-in-out
.spinner .rect2
-webkit-animation-delay -1.1s
animation-delay -1.1s
.spinner .rect3
-webkit-animation-delay -1.0s
animation-delay -1.0s
.spinner .rect4
-webkit-animation-delay -0.9s
animation-delay -0.9s
.spinner .rect5
-webkit-animation-delay -0.8s
animation-delay -0.8s
@-webkit-keyframes stretchdelay {
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
20% { -webkit-transform: scaleY(1.0) }
}
@keyframes stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
} 20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
}