Commit 92f16424 by Kyle Fiedler

fixed some more width bugs

parent 29aea44e
...@@ -47,8 +47,8 @@ nav.sequence-nav { ...@@ -47,8 +47,8 @@ nav.sequence-nav {
border-right: 1px solid darken(#F6EFD4, 10%); border-right: 1px solid darken(#F6EFD4, 10%);
cursor: pointer; cursor: pointer;
display: table-cell; display: table-cell;
padding: 14px 14px; padding: 14px 4px;
width: 18px; width: 28px;
// @media screen and (max-width: 800px) { // @media screen and (max-width: 800px) {
// padding: 12px 8px; // padding: 12px 8px;
...@@ -124,9 +124,9 @@ nav.sequence-nav { ...@@ -124,9 +124,9 @@ nav.sequence-nav {
border-left: 1px solid darken(#f6efd4, 20%); border-left: 1px solid darken(#f6efd4, 20%);
cursor: pointer; cursor: pointer;
display: table-cell; display: table-cell;
padding: 14px; padding: 14px 4px;
text-indent: -9999px; text-indent: -9999px;
width: 72px; width: 82px;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
......
...@@ -62,19 +62,23 @@ section.course-content { ...@@ -62,19 +62,23 @@ section.course-content {
background: #c2c2c2; background: #c2c2c2;
border: none; border: none;
border-bottom: 1px solid #000; border-bottom: 1px solid #000;
height: 20px; height: 14px;
a.ui-slider-handle { a.ui-slider-handle {
@include border-radius(0); @include border-radius(20px);
@include box-shadow(inset 0 1px 0 lighten($mit-red, 10%));
background: $mit-red url(/static/images/slider-handle.png) center center no-repeat; background: $mit-red url(/static/images/slider-handle.png) center center no-repeat;
border: 0; border: 0;
border-right: 1px solid darken($mit-red, 20%); border: 1px solid darken($mit-red, 20%);
border-left: 1px solid darken($mit-red, 20%);
cursor: pointer; cursor: pointer;
height: 20px; height: 20px;
margin: 0; margin-left: -10px;
top: 0; top: -4px;
width: 20px; width: 20px;
&:focus {
outline: none;
}
} }
} }
......
...@@ -109,9 +109,10 @@ div.course-wrapper { ...@@ -109,9 +109,10 @@ div.course-wrapper {
display: table-cell; display: table-cell;
vertical-align: top; vertical-align: top;
@media screen and (max-width:980px) { @media screen and (max-width:1020px) {
display: block; display: block;
width: auto; width: auto;
border-right: 0;
} }
} }
...@@ -120,9 +121,10 @@ div.course-wrapper { ...@@ -120,9 +121,10 @@ div.course-wrapper {
width: flex-grid(7, 9); width: flex-grid(7, 9);
padding-left: flex-gutter(9); padding-left: flex-gutter(9);
@media screen and (max-width:910px) { @media screen and (max-width:1020px) {
display: block; display: block;
width: auto; width: auto;
padding: 0;
} }
span { span {
...@@ -186,6 +188,11 @@ div.course-wrapper { ...@@ -186,6 +188,11 @@ div.course-wrapper {
section.problems-wrapper { section.problems-wrapper {
display: table; display: table;
width: 100%; width: 100%;
@media screen and (max-width:1020px) {
display: block;
width: auto;
}
} }
ol.vert-mod { ol.vert-mod {
......
...@@ -21,12 +21,12 @@ html { ...@@ -21,12 +21,12 @@ html {
padding: 0 $body-line-height; padding: 0 $body-line-height;
hgroup { hgroup {
float: left;
@extend .clearfix; @extend .clearfix;
float: left;
h1 { h1 {
border-right: 1px solid darken($mit-red, 5%); border-right: 1px solid darken($mit-red, 5%);
color: darken($mit-red, 20%); color: darken($mit-red, 25%);
font-size: 20px; font-size: 20px;
font-weight: 800; font-weight: 800;
margin: 0 lh() 0 0; margin: 0 lh() 0 0;
......
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