-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplashtext.txt
52 lines (49 loc) · 1.03 KB
/
splashtext.txt
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
HTML:
<div class="tilt">
<div id="status" class="pop">Server currently online</div>
<!-- I had to use " " instead of a simple space because the CSS will put a part of it on a separate line -->
</div>
CSS:
#status {
color: #FFFF00;
font-size: 1.5em;
font-family:'minecraftfont';
text-shadow:3px 3px #3F3F00;
padding: 40px;
position: absolute;
}
.pop {
animation: pop 0.58s infinite;
-webkit-animation: pop 0.58s infinite;
}
@keyframes pop {
from {
transform:scale(0.95)
}
50% {
transform:scale(1)
}
to {
transform:scale(0.95)
}
}
@-webkit-keyframes pop {
from {
-webkit-transform:scale(0.95)
}
50% {
-webkit-transform:scale(1)
}
to {
-webkit-transform:scale(0.95)
}
}
.tilt {
-ms-transform: rotate(-25deg);
-webkit-transform: rotate(-25deg);
transform: rotate(-25deg);
}
@font-face {
font-family:'minecraftfont';
src: url('http://design.d3x.co/demo/mcgeneric/font/minecraft_font.woff');
}