adding maintenance static data
This commit is contained in:
26
lms/static/maintenance/css/base.css
Normal file
26
lms/static/maintenance/css/base.css
Normal file
@@ -0,0 +1,26 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
background: -webkit-radial-gradient(center, #fff, #e6e6e6);
|
||||
background: -moz-radial-gradient(center, #fff, #e6e6e6);
|
||||
background: -ms-radial-gradient(center, #fff, #e6e6e6);
|
||||
background: -o-radial-gradient(center, #fff, #e6e6e6);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.legos {
|
||||
width: 693px;
|
||||
height: 327px;
|
||||
margin: 0 auto 50px auto;
|
||||
padding-top: 150px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 22px;
|
||||
line-height: 36px;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
}
|
||||
49
lms/static/maintenance/css/reset.css
Normal file
49
lms/static/maintenance/css/reset.css
Normal file
@@ -0,0 +1,49 @@
|
||||
@charset "UTF-8";
|
||||
/* CSS Document */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-weight: inherit;
|
||||
font-style: inherit;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
color: black;
|
||||
background: white;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
}
|
||||
caption, th, td {
|
||||
text-align: left;
|
||||
font-weight: normal;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: "";
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: "" "";
|
||||
}
|
||||
BIN
lms/static/maintenance/images/edx-legos.png
Normal file
BIN
lms/static/maintenance/images/edx-legos.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 111 KiB |
21
lms/static/maintenance/index.html
Normal file
21
lms/static/maintenance/index.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="css/reset.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="legos">
|
||||
<img src="images/edx-legos.png" />
|
||||
</div>
|
||||
|
||||
<h1>
|
||||
We’re busy building a brand new edX.<br />
|
||||
We’ll be right back!
|
||||
</h1>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user