-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
120 lines (107 loc) · 1.74 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
html, body {
background-image: url('img.jpg');
background-size: 100%;
background-repeat: no-repeat;
color: white;
text-align: center;
margin: 0px;
overflow: hidden;
}
.loader {
position: absolute;
left: 50%;
top: 20%;
margin: -75px 0 0 -75px;
border: 10px solid #00afcc;
border-radius: 50%;
border-top: 10px solid #02063f;
border-left: 10px solid #02063f;
width: 120px;
height: 120px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.info {
overflow: hidden;
position: fixed;
position: absolute;
top: 35%;
left: 50%;
font-size: 30px;
font-family: sans-serif;
transform: translate(-50%, -50%);
}
.button {
background-color: #003263;
border-radius: 5px;
color: white;
padding: .5em;
text-decoration: none;
height:100%;
width: 50%;
display:inline-table;
font-family: system-ui;
}
.button:focus,
.button:hover {
background-color: #007bff;
color: White;
}
.awesome {
overflow: hidden;
position: fixed;
position: absolute;
top: 50%;
left: 50%;
font-weight: bold;
font-size: 30px;
font-family: sans-serif;
color: #FFF;
transform: translate(-50%, -50%);
}
.bling {
-webkit-animation: colorchange 20s infinite alternate;
font-size: 35px;
}
@-webkit-keyframes colorchange {
0% {
color: blue;
}
10% {
color: #8e44ad;
}
20% {
color: #06b491;
}
30% {
color: #d35400;
}
40% {
color: blue;
}
50% {
color: #203d5a;
}
60% {
color: blue;
}
70% {
color: #29b941;
}
80% {
color: #f1c40f;
}
90% {
color: #037aca;
}
100% {
color: rgb(156, 4, 30);
}
}