-
Notifications
You must be signed in to change notification settings - Fork 38
/
index-light.html
33 lines (33 loc) · 1 KB
/
index-light.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
<!DOCTYPE html>
<html>
<head>
<title>Down for maintenance...</title>
<link rel="icon" type="image/png" href="images/icon-white.png">
<style>
body {
background-color: #fff;
text-align: center;
padding: 150px; }
h1 {
font-size: 50px; }
body {
font: 20px Helvetica, sans-serif; color: #191919;
}
#img360 {
border-radius: 100px;
margin-left: 0px;
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite;
}
@-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); } }
</style>
</head>
<body>
<img id="img360" src="images/icon-black.png">
<h1>Sorry we're down for maintenance.</h1>
<h2>We'll be back shortly.</h2>
</body>
</html>