-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathClosed.aspx
More file actions
25 lines (24 loc) · 1.31 KB
/
Closed.aspx
File metadata and controls
25 lines (24 loc) · 1.31 KB
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
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Closed.aspx.vb" Inherits="_Closed" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="border: none;">
<head id="Head1" runat="server">
<style type="text/css">
/* we avoid external CSS files so we reduce
the number of files that need to load */
body { font-family: "Segoe UI", Verdana, Arial, Helvetica; font-size: 13px; background-color: #fff; }
div { position: absolute; top: 50%; left: 50%; width: 400px; height: 300px; margin-top: -200px; margin-left: -200px; }
h1 { font-family: Georgia, Times New Roman, Times New Roman; font-weight: lighter; font-size: 690%; letter-spacing: -2px; color: #c05; padding: 0; margin: 0; }
h2 { font-family: "Segoe UI", Verdana, Arial, Helvetica; font-size: 250%; color: #ccc; text-transform: uppercase; padding: 0; margin: 0; }
a { color: #04d; }
</style>
<title>The Store is Closed</title>
</head>
<body>
<div>
<h1>Closed</h1>
<h2>Under Maintenance</h2>
<p>We'll be open shortly. Please come back soon.</p>
<p><asp:HyperLink ID="lnkHome" runat="server" NavigateUrl="~/Default.aspx">Go to the home page...</asp:HyperLink></p>
</div>
</body>
</html>