Browse Source

Derpin with font weights

pull/214/head
connors 11 years ago
parent
commit
e357738033
  1. 9
      dist/ratchet.css
  2. 2
      lib/sass/bars.scss
  3. 4
      lib/sass/base.scss
  4. 3
      lib/sass/forms.scss
  5. 2
      lib/sass/table-views.scss
  6. 3
      lib/sass/variables.scss

9
dist/ratchet.css vendored

@ -229,7 +229,9 @@ body {
right: 0;
bottom: 0;
left: 0;
font: 14px/1.25 "Helvetica Neue", sans-serif;
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 14px;
line-height: 1.25;
color: #000;
background-color: #fff;
}
@ -420,7 +422,7 @@ a {
padding-bottom: 6px;
padding-left: 15px;
margin-left: 0;
font-weight: bold;
font-weight: 500;
line-height: 18px;
background-color: #f8f8f8;
border-top: 1px solid rgba(0, 0, 0, 0.1);
@ -551,7 +553,8 @@ select {
float: left;
width: 35%;
padding: 11px 10px 9px 13px;
font-weight: 600;
font-weight: 500;
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.input-row label + input {

2
lib/sass/bars.scss

@ -52,7 +52,7 @@
padding: 0;
margin: 0;
font-size: 18px;
font-weight: 500;
font-weight: $font-weight;
line-height: $bar-base-height;
color: #000;
text-align: center;

4
lib/sass/base.scss

@ -11,7 +11,9 @@ body {
right: 0;
bottom: 0;
left: 0;
font: 14px/1.25 "Helvetica Neue", sans-serif;
font-family: $font-family;
font-size: 14px;
line-height: 1.25;
color: #000;
background-color: #fff;
}

3
lib/sass/forms.scss

@ -115,7 +115,8 @@ select {
float: left;
width: 35%;
padding: 11px 10px 9px 13px; // Optimizing the baseline for mobile.
font-weight: $font-weight-bold;
font-weight: $font-weight;
font-family: $font-family;
}
// Actual inputs float to right of labels and also have a set percentage

2
lib/sass/table-views.scss

@ -65,7 +65,7 @@
padding-bottom: 6px;
padding-left: 15px;
margin-left: 0;
font-weight: bold;
font-weight: $font-weight;
line-height: 18px;
background-color: #f8f8f8;
border-top: 1px solid rgba(0, 0, 0, .1);

3
lib/sass/variables.scss

@ -5,8 +5,9 @@
// Type
// --------------------------------------------------
$font-family: "Helvetica Neue", Helvetica, sans-serif;
$font-weight: 500;
$font-weight-bold: 600;
$font-weight-bold: 700;
$font-weight-light: 400;

Loading…
Cancel
Save