-
Notifications
You must be signed in to change notification settings - Fork 1
/
bookmark.css
53 lines (53 loc) · 1.11 KB
/
bookmark.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
@-webkit-keyframes yueloading {
0%,80%,100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes yueloading {
0%,80%,100% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.yuehu-bookmark-notice {
position: fixed;
left: 20px;
top: 20px;
padding: 14px;
color: white;
background: rgba(0,0,0,0.64);
border-radius: 4px;
z-index: 99999;
}
.yuehu-bookmark-loading .dot {
display: inline-block;
vertical-align: middle;
line-height: 1;
width: 18px;
height: 18px;
background: #fff;
border-radius: 50%;
-webkit-animation: yueloading 1.4s ease-in-out infinite;
animation: yueloading 1.4s ease-in-out infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.yuehu-bookmark-loading .dot-0 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.yuehu-bookmark-loading .dot-1 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}