Commit b90aa2e2 by Kyle Fiedler

Added more styles for the info page and added headers for the updates and…

Added more styles for the info page and added headers for the updates and handouts so they will be consistant for every class
parent 6c3ec99f
...@@ -8,8 +8,11 @@ $fg-max-width: 1400px; ...@@ -8,8 +8,11 @@ $fg-max-width: 1400px;
$fg-min-width: 810px; $fg-min-width: 810px;
$sans-serif: 'Open Sans', $verdana; $sans-serif: 'Open Sans', $verdana;
$body-font-family: $sans-serif;
$serif: $georgia; $serif: $georgia;
$body-font-size: em(14);
$body-line-height: golden-ratio(.875em, 1);
$base-font-color: rgb(60,60,60); $base-font-color: rgb(60,60,60);
$lighter-base-font-color: rgb(160,160,160); $lighter-base-font-color: rgb(160,160,160);
...@@ -20,9 +23,6 @@ $error-red: rgb(253, 87, 87); ...@@ -20,9 +23,6 @@ $error-red: rgb(253, 87, 87);
$border-color: #C8C8C8; $border-color: #C8C8C8;
// old variables // old variables
$body-font-family: "Open Sans", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
$body-font-size: em(14);
$body-line-height: golden-ratio(.875em, 1);
$light-gray: #ddd; $light-gray: #ddd;
$dark-gray: #333; $dark-gray: #333;
......
...@@ -16,10 +16,12 @@ div.info-wrapper { ...@@ -16,10 +16,12 @@ div.info-wrapper {
> ol { > ol {
list-style: none; list-style: none;
padding-left: 0; padding-left: 0;
margin-bottom: lh();
> li { > li {
@extend .clearfix; @extend .clearfix;
border-bottom: 1px solid #e3e3e3; border-bottom: 1px solid #e3e3e3;
margin-bottom: lh();
padding-bottom: lh(.5); padding-bottom: lh(.5);
list-style-type: disk; list-style-type: disk;
...@@ -41,7 +43,7 @@ div.info-wrapper { ...@@ -41,7 +43,7 @@ div.info-wrapper {
float: left; float: left;
margin: 0 flex-gutter() 0 0; margin: 0 flex-gutter() 0 0;
width: flex-grid(2, 9); width: flex-grid(2, 9);
font-size: body-font-size; font-size: $body-font-size;
font-weight: bold; font-weight: bold;
} }
...@@ -68,17 +70,21 @@ div.info-wrapper { ...@@ -68,17 +70,21 @@ div.info-wrapper {
@extend .sidebar; @extend .sidebar;
border-left: 1px solid #d3d3d3; border-left: 1px solid #d3d3d3;
@include border-radius(0 4px 4px 0); @include border-radius(0 4px 4px 0);
@include box-shadow(none);
border-right: 0; border-right: 0;
header {
@extend .bottom-border;
padding: lh(.5) lh(.75);
h1 { h1 {
font-size: 18px; @extend .bottom-border;
margin: 0 ; padding: lh(.5) lh(.5);
} }
header {
// h1 {
// font-weight: 100;
// font-style: italic;
// }
p { p {
color: #666; color: #666;
font-size: 12px; font-size: 12px;
......
...@@ -60,11 +60,13 @@ h1.top-header { ...@@ -60,11 +60,13 @@ h1.top-header {
width: flex-grid(3); width: flex-grid(3);
h1, h2 { h1, h2 {
font-size: 18px; font-size: em(18);
font-weight: bold; font-weight: 100;
letter-spacing: 0; letter-spacing: 0;
text-transform: none; text-transform: none;
font-family: $sans-serif; font-family: $sans-serif;
text-align: left;
font-style: italic;
} }
a { a {
......
...@@ -20,23 +20,25 @@ $(document).ready(function(){ ...@@ -20,23 +20,25 @@ $(document).ready(function(){
</%block> </%block>
<section class="container"> <section class="container">
<section class="courseware">
<div class="info-wrapper"> <div class="info-wrapper">
% if user.is_authenticated(): % if user.is_authenticated():
<section class="updates"> <section class="updates">
<h1>Course Updates &amp; News</h1>
${get_course_info_section(course, 'updates')} ${get_course_info_section(course, 'updates')}
</section> </section>
<section aria-label="Handout Navigation" class="handouts"> <section aria-label="Handout Navigation" class="handouts">
<h1>Course Handouts</h1>
${get_course_info_section(course, 'handouts')} ${get_course_info_section(course, 'handouts')}
</section> </section>
% else: % else:
<section class="updates"> <section class="updates">
<h1>Course Updates &amp; News</h1>
${get_course_info_section(course, 'guest_updates')} ${get_course_info_section(course, 'guest_updates')}
</section> </section>
<section aria-label="Handout Navigation" class="handouts"> <section aria-label="Handout Navigation" class="handouts">
<h1>Course Handouts</h1>
${get_course_info_section(course, 'guest_handouts')} ${get_course_info_section(course, 'guest_handouts')}
</section> </section>
% endif % endif
</div> </div>
</section>
</section> </section>
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