Commit a4b31af7 by Galen Frechette

updates basic html structure and base color

parent 8b52a9fc
......@@ -15,7 +15,7 @@ $blue: rgb(29,157,217);
$pink: rgb(182,37,104);
html, body {
background: rgb(253,253,253);
background: rgb(250,250,250);
font-size: 75%;
}
......@@ -23,7 +23,6 @@ h1, h2, h3, h4, h5, h6 {
color: $base-font-color;
font: normal 1.4rem/2rem $serif;
margin: 0px;
-webkit-font-smoothing: antialiased;
}
h1 {
......@@ -41,13 +40,13 @@ h2 {
letter-spacing: 1px;
margin-bottom: 15px;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
p {
color: $base-font-color;
font: normal 1.3rem/2rem $serif;
margin: 0px;
//-webkit-font-smoothing: antialiased;
}
p + p {
......@@ -73,7 +72,6 @@ a:link, a:visited {
font: normal 1.2rem/2rem $sans-serif;
text-decoration: none;
@include transition(all, 0.1s, linear);
//-webkit-font-smoothing: antialiased;
&:hover {
color: $base-font-color;
......@@ -81,6 +79,7 @@ a:link, a:visited {
}
.content-wrapper {
background: rgb(255,255,255);
margin: 0 auto 0;
width: flex-grid(12);
}
......
footer {
background: rgb(250,250,250);
background: transparent;
border-top: 1px solid rgb(200,200,200);
@include box-shadow(inset 0 1px 3px 0 rgba(0,0,0, 0.1));
margin: 0 auto;
......@@ -67,7 +67,6 @@ footer {
color: $lighter-base-font-color;
font: italic 1.2rem/1.6rem $serif;
margin-left: 5px;
//text-decoration: underline;
}
}
}
......
......@@ -364,14 +364,13 @@ td {
font-style: italic; }
html, body {
background: #fdfdfd;
background: #fafafa;
font-size: 75%; }
h1, h2, h3, h4, h5, h6 {
color: #3c3c3c;
font: normal 1.4rem/2rem Georgia, Cambria, "Times New Roman", Times, serif;
margin: 0px;
-webkit-font-smoothing: antialiased; }
margin: 0px; }
h1 {
color: #a0a0a0;
......@@ -386,7 +385,8 @@ h2 {
font: normal 1.4rem/2rem Georgia, Cambria, "Times New Roman", Times, serif;
letter-spacing: 1px;
margin-bottom: 15px;
text-transform: uppercase; }
text-transform: uppercase;
-webkit-font-smoothing: antialiased; }
p {
color: #3c3c3c;
......@@ -452,6 +452,7 @@ a:link, a:visited {
color: #3c3c3c; }
.content-wrapper {
background: white;
margin: 0 auto 0;
width: 100%; }
......@@ -1391,7 +1392,7 @@ form {
box-shadow: inset 0 0 20px 0 #00295f, 0 1px 0 white; }
footer {
background: #fafafa;
background: transparent;
border-top: 1px solid #c8c8c8;
-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
......
......@@ -16,7 +16,7 @@
<section class="container">
## I'm removing this for now since we aren't using it for the fall.
<%include file="course_filter.html" />
## <%include file="course_filter.html" />
<section class="courses">
%for course in courses:
<%include file="course.html" args="course=course" />
......
......@@ -3,8 +3,7 @@
<%namespace name='static' file='static_content.html'/>
<section class="container">
<section class="dashboard">
<section class="container dashboard">
<section class="sidebar">
<header class="profile">
......@@ -108,5 +107,4 @@
</article>
</section>
</section>
</section>
......@@ -2,7 +2,7 @@
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<section class="content-wrapper home">
<section class="home">
<header>
<div class="inner-wrapper">
<h1>The Future of Online Education</h1>
......
......@@ -67,14 +67,14 @@
<p class="ie-warning">You are using a browser that is not supported by <em>edX</em>, and you might not be able to complete pieces of the course. Please download the latest version of <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a> or <a href="https://www.google.com/chrome">Chrome</a> to get the full experience.</p>
<![endif]-->
<section class="content-wrapper">
${self.body()}
</section>
<%block name="bodyextra"/>
<%include file="footer.html" />
<%block name="js_extra"/>
<script src="${static.url('js/my_courses_dropdown.js')}"></script>
<!--
-<script src="${static.url('js/sticky_footer.js')}"></script>
-->
<script src="${static.url('js/toggle_login_modal.js')}"></script>
<script src="${static.url('js/sticky_filter.js')}"></script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment