Commit 1159b14b by Bridger Maxwell

Merge branch 'master' of github.com:MITx/mitx

parents 70c7ee42 38f96b72
h2 { h2 {
margin-top: 0; margin-top: 0;
margin-bottom: 15px; margin-bottom: 15px;
width: flex-grid(2, 9);
padding-right: flex-gutter(9);
border-right: 1px dashed #ddd;
@include box-sizing(border-box);
display: table-cell;
vertical-align: top;
&.problem-header { &.problem-header {
section.staff { section.staff {
...@@ -15,12 +9,6 @@ h2 { ...@@ -15,12 +9,6 @@ h2 {
} }
} }
@media screen and (max-width:1120px) {
display: block;
width: auto;
border-right: 0;
}
@media print { @media print {
display: block; display: block;
width: auto; width: auto;
...@@ -29,16 +17,6 @@ h2 { ...@@ -29,16 +17,6 @@ h2 {
} }
section.problem { section.problem {
display: table-cell;
width: flex-grid(7, 9);
padding-left: flex-gutter(9);
@media screen and (max-width:1120px) {
display: block;
width: auto;
padding: 0;
}
@media print { @media print {
display: block; display: block;
width: auto; width: auto;
......
...@@ -53,6 +53,18 @@ input[type="password"] { ...@@ -53,6 +53,18 @@ input[type="password"] {
} }
} }
input[type="reset"],
input[type="submit"],
input[type="button"],
button,
.button {
@extend .gray-button;
form & {
@extend .gray-button;
}
}
img { img {
max-width: 100%; max-width: 100%;
......
...@@ -6,28 +6,34 @@ h1.top-header { ...@@ -6,28 +6,34 @@ h1.top-header {
padding-bottom: lh(); padding-bottom: lh();
} }
.light-button, a.light-button { .button-reset {
border: 1px solid #ccc;
@include border-radius(3px);
@include box-shadow(inset 0 1px 0 #fff);
color: #666;
cursor: pointer;
font: 400 $body-font-size $body-font-family;
@include linear-gradient(#fff, lighten(#888, 40%));
padding: 4px 8px;
text-decoration: none;
text-shadow: none;
text-transform: none; text-transform: none;
letter-spacing: 0; letter-spacing: 0;
-webkit-font-smoothing: antialiased;
&:hover, &:focus { &:hover {
border: 1px solid #ccc;
@include linear-gradient(#fff, lighten(#888, 37%));
text-decoration: none; text-decoration: none;
} }
} }
.light-button, a.light-button, // only used in askbot as classes
.gray-button {
@include button(simple, #eee);
@extend .button-reset;
font-size: em(13);
}
.blue-button {
@include button(simple, $blue);
@extend .button-reset;
font-size: em(13);
}
.pink-button {
@include button(simple, $pink);
@extend .button-reset;
font-size: em(13);
}
.content { .content {
@include box-sizing(border-box); @include box-sizing(border-box);
display: table-cell; display: table-cell;
......
...@@ -43,8 +43,8 @@ div.discussion-wrapper aside { ...@@ -43,8 +43,8 @@ div.discussion-wrapper aside {
width: 27%; width: 27%;
float: right; float: right;
text-align: center; text-align: center;
padding-left: 0; padding: 4px 0;
padding-right: 0; text-transform: capitalize;
} }
input[type="text"] { input[type="text"] {
...@@ -300,7 +300,7 @@ div.discussion-wrapper aside { ...@@ -300,7 +300,7 @@ div.discussion-wrapper aside {
border-top: 0; border-top: 0;
a { a {
@extend .light-button; @extend .gray-button;
@include box-sizing(border-box); @include box-sizing(border-box);
display: block; display: block;
text-align: center; text-align: center;
......
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