Skip to content

Commit

Permalink
added maintenance page
Browse files Browse the repository at this point in the history
  • Loading branch information
popenc committed Sep 5, 2024
1 parent 80a1d2b commit 2c5634f
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions docker/nginx/index_mp.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EPA CyAN Web App</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #205493;
color: white;
padding: 20px;
text-align: center;
}

.hero {
background-size: cover;
background-position: center;
color: white;
/*height: 400px;*/
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding-top: 15%;
}

.hero h1 {
background-color: #205493;
padding: 20px;
border-radius: 10px;
}

.container {
padding: 20px;
max-width: 1200px;
margin: auto;
}

.content {
display: flex;
justify-content: space-between;
}

.content .main {
flex: 2;
margin-right: 20px;
}

.content .sidebar {
flex: 1;
background-color: #e2e2e2;
padding: 15px;
}

.footer {
background-color: #205493;
color: white;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
height: 10%;
}
</style>
</head>
<body>

<header>
<h1>Cyanobacteria Assessment Network</h1>
</header>

<div class="hero">
<h1>CyANWeb is temporarily down for maintenance.</h1>
</div>

<footer class="footer">
<div id="footer-banner">
<div class="footer-block">
<a href="https://www.epa.gov" class="footer-epa-logo-link" target="_blank" aria-label="EPA homepage link"><span class="footer-epa-logo"></span></a>
</div>
</div>

</footer>

</body>
</html>

0 comments on commit 2c5634f

Please sign in to comment.