Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scss/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ input.input-large {
// Typical form groups - `<dl.form>` with a `<dt>` containing the label and
// `<dd> containing the form elements.
dl.form {
margin: 15px 0;
margin: 0 0 15px;

input[type="text"],
input[type="password"],
Expand Down Expand Up @@ -323,7 +323,7 @@ dl.form {
// For checkboxes and radio button selections.
.form-checkbox {
padding-left: 20px;
margin: 15px 0;
margin-bottom: 15px;
vertical-align: middle;

label {
Expand Down
13 changes: 9 additions & 4 deletions scss/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ h3,
h4,
h5,
h6 {
margin-top: 15px;
margin-bottom: 15px;
line-height: 1.1;
margin-top: 0;
margin-bottom: 0;
line-height: 1.5;
}

h1 { font-size: 30px; }
Expand All @@ -23,6 +23,11 @@ h6 { font-size: 11px; }
// Body text
// --------------------------------------------------

p {
margin-top: 0;
margin-bottom: 10px;
}

small {
font-size: 90%;
}
Expand All @@ -49,7 +54,7 @@ blockquote {

ul,
ol {
padding: 0;
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
}
Expand Down