-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (84 loc) · 1.8 KB
/
style.css
File metadata and controls
84 lines (84 loc) · 1.8 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
@import url(http://fonts.googleapis.com/css?family=Comfortaa);
body {
background: url("img/background.jpg") no-repeat;
background-size: cover;
}
.loading {
position: absolute;
top: 50%;
left: 50%;
width: 150px;
height: 150px;
margin: -85px 0 0 -80px;
-webkit-animation:spin 7s linear infinite;
-moz-animation:spin 7s linear infinite;
animation:spin 7s linear infinite;
border: 5px #70A2CC;
border-style: dashed;
border-radius: 100%
}
.image {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 120px;
margin:-60px 0 0 -60px;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
#message {
position: absolute;
width: 23%;
height: 6%;
background: rgba(0, 0, 0, 0.25);
top: 85%;
left: 50%;
margin: -11.5%; 0 0 -3%;
box-shadow: 1px 1px 10px #000000;
font-family: 'Comfortaa', cursive;
font-size: 1vw;
padding: 8px;
color: #FFFFFF;
border-radius: 5px;
border: solid 2px #70A2CC;
text-align: center;
}
#title {
text-align: center;
font-size: 1vw;
}
#dev {
position: absolute;
width: 24%;
height: 52%;
background: rgba(0, 0, 0, 0.25);
top: 39%;
left: 80%;
margin: -12%; 0 0 -26%;
box-shadow: 1px 1px 10px #000000;
font-family: 'Comfortaa', cursive;
font-size: 1vw;
padding: 8px;
color: #FFFFFF;
border-radius: 5px;
border: solid 2px #70A2CC;
text-align: center;
}
#song {
position: absolute;
width: 13.02083333333333%;
height: 2.314814814814815%;
background: rgba(0, 0, 0, 0.25);
top: 1.389%;
left: 0.78125%;
box-shadow: 1px 1px 10px #000000;
font-family: 'Comfortaa', cursive;
font-size: 1vw;
padding: 8px;
color: #FFFFFF;
border-radius: 5px;
border: solid 2px #70A2CC;
text-align: center;
}