-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>StormFX // World of Warcraft Add-Ons</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Condensed" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-color: #333;
width: 100%;
height: 100%;
font: 16px 'Open Sans', Tahoma, Verdana, Arial, san-serif;
}
main {
display: -webkit-flex; /* Safari */
display: flex;
height: 100%;
width: 100%;
position: absolute;
margin: 0 auto;
justify-content: center;
align-items: center;
overflow: auto;
}
main div {
color: #fff;
overflow: auto;
padding: 0;
text-align: center;
}
main h1 {
font-family: 'Roboto Condensed', Tahoma, Verdana, Arial, sans-serif;
border-bottom: 1px solid #444;
color: #fff;
margin: 0;
padding: 0;
}
main p {
color: #606264;
font-size: 0.9em;
margin: 0;
padding: 0;
text-transform: uppercase;
}
.fx {
color: #22b3eb;
transition: color 0.5s ease;
}
main div:hover .fx {
color: #ff8000;
}
</style>
</head>
<body>
<main>
<div>
<a href="https://github.com/SFX-WoW"><img src="img/logo-trans.png" alt="SFX-WoW" height="150" width="150" title="In Development"></a>
</div>
</main>
</body>
</html>