blob: a0fe7fe1cc57f6358f9ec364df7055fced497413 (
plain) (
blame)
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>
<head>
<title>Four Island</title>
<style type="text/css">
body {
background-color: #3D3D3D;
}
#wrap {
position: fixed;
top: 50%;
left: 50%;
margin-left: -20em;
margin-top: -9em;
width: 40em;
height: 18em;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
text-shadow: #000 1px 1px;
font-family: sans;
color: #CDCDCD;
text-align: center;
}
#options {
float: right;
margin-top: -1em;
}
#options ul li {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
background-color: rgba(200,200,200,0.4);
list-style-type: none;
}
#options ul li:hover {
background-color: orange;
}
#options ul li a {
padding: 5px;
color: white;
text-decoration: none;
font-family: sans;
}
#options ul li:hover a {
color: black;
}
</style>
</head>
<body>
<nav id="options">
<ul>
<li><a href="http://fourisland.com/fourm/ucp.php?mode=login">Login</a></li>
</ul>
</nav>
<div id="wrap">
<img src="http://fourisland.com/apple-touch-icon-precomposed.png">
<h1>Four Island is currently under maintenance</h1>
<p>We'll be back before you know it. Just sit tight for a while.</p>
</div>
</body>
</html>
|