-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
127 lines (110 loc) · 2.61 KB
/
style.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
font-family: "Oswald";
text-align: center;
background-color: #7380ff;
margin: 0;
}
h1 {
color: #7380ff;
background-color: #353749;
margin: 0;
padding: 100px 0;
font-size: 60px;
}
h2 {
text-transform: uppercase;
}
#row {
color: #fff;
width: 70%;
margin: 0 auto;
text-align: justify;
background-color: #6068b1;
margin: -60px auto 30px;
border-radius: 40px;
padding: 10px 40px;
}
#connection-checker-full-screen {
visibility: hidden;
position: fixed;
width: 100%;
height: 100%;
font-size: 50px;
color: #fff;
background-color: #ff5544ed;
transition: 500ms;
}
#connection-checker-full-screen span {
background-color: #000c;
border-radius: 30px;
padding: 40px;
color: #fff;
}
#connection-checker-full-screen i {
margin-right: 20px;
font-size: 80px;
vertical-align: -9px;
}
.middle-center {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
.flip-in-diag-2-br {
-webkit-animation: flip-in-diag-2-br 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: flip-in-diag-2-br 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.flip-out-diag-2-tl {
-webkit-animation: flip-out-diag-2-tl 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
animation: flip-out-diag-2-tl 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes flip-in-diag-2-br {
0% {
-webkit-transform: rotate3d(-1, 1, 0, -80deg);
transform: rotate3d(-1, 1, 0, -80deg);
opacity: 0;
}
100% {
-webkit-transform: rotate3d(1, 1, 0, 0deg);
transform: rotate3d(1, 1, 0, 0deg);
opacity: 1;
}
}
@keyframes flip-in-diag-2-br {
0% {
-webkit-transform: rotate3d(-1, 1, 0, -80deg);
transform: rotate3d(-1, 1, 0, -80deg);
opacity: 0;
}
100% {
-webkit-transform: rotate3d(1, 1, 0, 0deg);
transform: rotate3d(1, 1, 0, 0deg);
opacity: 1;
}
}
@-webkit-keyframes flip-out-diag-2-tl {
0% {
-webkit-transform: rotate3d(1, 1, 0, 0deg);
transform: rotate3d(1, 1, 0, 0deg);
opacity: 1;
}
100% {
-webkit-transform: rotate3d(-1, 1, 0, -70deg);
transform: rotate3d(-1, 1, 0, -70deg);
opacity: 0;
}
}
@keyframes flip-out-diag-2-tl {
0% {
-webkit-transform: rotate3d(1, 1, 0, 0deg);
transform: rotate3d(1, 1, 0, 0deg);
opacity: 1;
}
100% {
-webkit-transform: rotate3d(-1, 1, 0, -70deg);
transform: rotate3d(-1, 1, 0, -70deg);
opacity: 0;
}
}