-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 1.87 KB
/
index.html
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
<!DOCTYPE html>
<html>
<body>
<title>Spotify Web</title>
<div class="img"><img src="https://raw.githubusercontent.com/brys0/Spotify-Web/master/Art/sws-spotify.png" alt="img"></div>
<a href="https://github.com/brys0/Spotify-Web">
<div class="gh">Github help me</div>
</a>
<div class="setup">Congrats on getting the Webserver up and running! 🎉</div>
<style>
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body {
background-color: #2C2F33;
-webkit-animation: fadein 2.5s;
-moz-animation: fadein 2.5s;
-ms-animation: fadein 2.5s;
-o-animation: fadein 2.5s;
animation: fadein 2.5s;
}
.img {
position: fixed;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
}
.gh {
font-family: 'Audiowide', regular;
font-size: 150px;
color: #7289DA;
position: fixed;
top: 50%;
left: 40%;
transition: all 300ms ease-in-out;
}
.gh:hover {
color: #1DB954;
transition: all 300ms ease-in-out;
}
.setup {
color: #eb4034;
font-family: 'Montserrat', sans-serif;
font-size: 45px;
position: fixed;
top: 75%;
left: 30%;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</body>
</html>