blob: 55f133f7318f8e439c5168e7f230a5638379515c (
plain)
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
|
<html>
<head>
<title>Pathery.com - Updating</title>
<style>
body {
background-color: #121212;
color:#ddd
}
.update {
background-color: #222229;
margin:0 auto;
margin-top: 200px;
width:400px;
border: 0px outset #aaa;
padding: 10px;
border-radius: 25px;
}
h3 {
text-align: center;
}
.buttons a {
margin: 10px;
opacity: 0.7;
filter: alpha(opacity=70);
}
.buttons a:hover {
opacity: 1;
filter: alpha(opacity=100);
}
a {
text-decoration: underline;
color: #aaaa99;
}
a:hover {
text-decoration: underline;
color: #FFFFFF;
}
</style>
</head>
<body>
<div class='update'>
<h3>Pathery.com is updating...</h3>
<p>Would you like to use this time to be social?</p>
<div class='buttons'>
<a href='http://www.facebook.com/Pathery' target='top' title='Facebook' alt='Facebook'><img src='images/btns/facebook.png' /></a>
<a href='https://twitter.com/Pathery' target='top' title='Twitter' alt='Twitter'><img src='images/btns/twitter.png' /></a>
<a href='https://plus.google.com/105148482605711831543' target='top' title='Google Plus' alt='Google Plus'><img src='images/btns/googleplus.png' /></a>
</div>
<p>The website should return shortly.
<a href='http://www.pathery.com/' title='(refreshes page)'>Check Now</a>
</div>
</body>
</html>
|