-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #218 from adhocteam/cm-302-create-mainenance-page
Cm 302 create mainenance page
- Loading branch information
Showing
7 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
root: maintenance_page |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>TTA Smart Hub</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="shortcut icon" href="logo64.png" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<header> | ||
<img src="eclkc-blocks-logo.png" alt="TTA Smarthub logo"> | ||
<span> | ||
Office of Head Start TTA Smart Hub | ||
</span> | ||
</header> | ||
<div class="container"> | ||
<div class="left-div"> | ||
</div> | ||
<main> | ||
<img src="eclkc-blocks-logo.png" alt="TTA Smarthub Logo"> | ||
<h1>The TTA Smart Hub is temporarily down.</h1> | ||
<p>Due to system maintenance, system services are currently unavilable. Please check back soon.</p> | ||
</main> | ||
|
||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
|
||
body { | ||
padding: 0; | ||
margin: 0; | ||
overflow: hidden; | ||
font-family: SourceSansPro, sans-serif; | ||
} | ||
|
||
header { | ||
height: 7vh; | ||
min-height: 72px; | ||
text-align: center; | ||
display: flex; | ||
align-items: center; | ||
font-size: 20px; | ||
color: #21272d; | ||
} | ||
|
||
header img { | ||
height: 55px; | ||
margin-left: 24px; | ||
margin-right: 16px; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
} | ||
|
||
.left-div { | ||
width: 10%; | ||
min-width: 100px; | ||
height: 93vh; | ||
background-color: #264a64; | ||
margin: 0; | ||
} | ||
|
||
main { | ||
width: 90%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
background-color: #f8f8f8; | ||
border: 1px solid #c5c5c5; | ||
padding: 10px; | ||
} | ||
|
||
main h1 { | ||
font-size: 30px; | ||
font-family: Merriweather, serif; | ||
line-height: 39px; | ||
margin-bottom: 0; | ||
} | ||
|
||
main img { | ||
width: 110px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters