-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtdp.css
76 lines (76 loc) · 1.58 KB
/
tdp.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
.tdp-vld-msg {
position: relative;
padding: 3px;
background: #FFFFFF;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: #FF0000 solid 1px;
color: red;
margin: 10px;
}
.tdp-vld-msg:after {
content: '';
position: absolute;
border-style: solid;
border-width: 5px 10px 5px 0;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
left: -9px;
top: 3px;
}
.tdp-vld-msg:before {
content: '';
position: absolute;
border-style: solid;
border-width: 5px 10px 5px 0;
border-color: transparent #FF0000;
display: block;
width: 0;
z-index: 0;
left: -11px;
top: 3px;
}
.tdp-vld-working {
margin: 60px auto;
font-size: 10px;
position: relative;
text-indent: -9999em;
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
border-left: 1.1em solid #ffffff;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: tdp-vld-work 1.1s infinite linear;
animation: tdp-vld-work 1.1s infinite linear;
}
.tdp-vld-working,
.tdp-vld-working:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
@-webkit-keyframes tdp-vld-work {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes tdp-vld-work {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}