Files
edx-platform/sass/_base.scss
Kyle Fiedler 170f81a487 More style for the textbook page and various style fixes
--HG--
branch : kf-refactor
2012-01-06 13:19:57 -05:00

34 lines
428 B
SCSS

h1 {
}
h2 {
}
h3 {
}
p {
margin-bottom: $body-line-height;
}
#{$all-text-inputs}, textarea {
@include border-radius(3px);
@include box-shadow(0 -1px 0 #fff);
@include linear-gradient(#eee, #fff);
border: 1px solid #bbb;
font: $body-font-size $body-font-family;
padding: 8px;
&:focus {
border-color: $mit-red;
}
}
input[type="submit"], input[type="button"], button {
// @extend .button;
}