Added 1.5 x line height ratio
This commit is contained in:
parent
834a9e985a
commit
a24f841e57
15
css/Ribs.css
15
css/Ribs.css
@ -320,7 +320,7 @@ h1 {
|
||||
font-family: "Georgia", "Times New Roman", serif;
|
||||
font-weight: normal;
|
||||
font-size: 46px;
|
||||
line-height: 50px;
|
||||
line-height: 69px;
|
||||
margin: 0 0 14px 0; }
|
||||
|
||||
h2 {
|
||||
@ -328,7 +328,7 @@ h2 {
|
||||
font-family: "Georgia", "Times New Roman", serif;
|
||||
font-weight: normal;
|
||||
font-size: 35px;
|
||||
line-height: 40px;
|
||||
line-height: 52.5px;
|
||||
margin: 0 0 10px 0; }
|
||||
|
||||
h3 {
|
||||
@ -336,7 +336,7 @@ h3 {
|
||||
font-family: "Georgia", "Times New Roman", serif;
|
||||
font-weight: normal;
|
||||
font-size: 28px;
|
||||
line-height: 34px;
|
||||
line-height: 42px;
|
||||
margin: 0 0 8px 0; }
|
||||
|
||||
h4 {
|
||||
@ -344,7 +344,7 @@ h4 {
|
||||
font-family: "Georgia", "Times New Roman", serif;
|
||||
font-weight: normal;
|
||||
font-size: 21px;
|
||||
line-height: 30px;
|
||||
line-height: 31.5px;
|
||||
margin: 0 0 4px 0; }
|
||||
|
||||
h5 {
|
||||
@ -352,7 +352,7 @@ h5 {
|
||||
font-family: "Georgia", "Times New Roman", serif;
|
||||
font-weight: normal;
|
||||
font-size: 17px;
|
||||
line-height: 24px; }
|
||||
line-height: 25.5px; }
|
||||
|
||||
h6 {
|
||||
color: #181818;
|
||||
@ -365,14 +365,15 @@ h6 {
|
||||
color: #777777; }
|
||||
|
||||
p {
|
||||
margin: 0 0 20px 0; }
|
||||
margin: 0 0 20px 0;
|
||||
line-height: 21px; }
|
||||
|
||||
p img {
|
||||
margin: 0; }
|
||||
|
||||
.lead {
|
||||
font-size: 21px;
|
||||
line-height: 27px;
|
||||
line-height: 31.5px;
|
||||
color: #777777; }
|
||||
|
||||
em {
|
||||
|
4
css/Ribs.min.css
vendored
4
css/Ribs.min.css
vendored
File diff suppressed because one or more lines are too long
@ -41,7 +41,7 @@
|
||||
|
||||
<div class="container">
|
||||
<div class="sixteen columns">
|
||||
<h1 class="remove-bottom" style="margin-top: 40px">Skeleton-SCSS</h1>
|
||||
<h1 class="remove-bottom" style="margin-top: 40px">Ribs</h1>
|
||||
<h5>Version 1.0.2</h5>
|
||||
<hr />
|
||||
</div>
|
||||
|
@ -73,6 +73,7 @@ h6 {
|
||||
|
||||
p {
|
||||
margin: $paragraph_margin;
|
||||
line-height: $paragraph_line_height;
|
||||
}
|
||||
|
||||
p img {
|
||||
|
@ -4,6 +4,7 @@ $desktop-container-width: 960px;
|
||||
$tablet-container-width: 768px;
|
||||
$mobile-container-width: 90%;
|
||||
$mobile-column-width: 100%;
|
||||
$base_font_size: 14px;
|
||||
|
||||
$form_element_font: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
|
||||
@ -57,34 +58,35 @@ $heading_font_weight: normal;
|
||||
$heading_colour: #181818;
|
||||
|
||||
$heading1_font_size: 46px;
|
||||
$heading1_line_height: 50px;
|
||||
$heading1_line_height: $heading1_font_size * 1.5;
|
||||
$heading1_margin: 0 0 14px 0;
|
||||
|
||||
$heading2_font_size: 35px;
|
||||
$heading2_line_height: 40px;
|
||||
$heading2_line_height: $heading2_font_size * 1.5;
|
||||
$heading2_margin: 0 0 10px 0;
|
||||
|
||||
$heading3_font_size: 28px;
|
||||
$heading3_line_height: 34px;
|
||||
$heading3_line_height: $heading3_font_size * 1.5;
|
||||
$heading3_margin: 0 0 8px 0;
|
||||
|
||||
$heading4_font_size: 21px;
|
||||
$heading4_line_height: 30px;
|
||||
$heading4_line_height: $heading4_font_size * 1.5;
|
||||
$heading4_margin: 0 0 4px 0;
|
||||
|
||||
$heading5_font_size: 17px;
|
||||
$heading5_line_height: 24px;
|
||||
$heading5_line_height: $heading5_font_size * 1.5;
|
||||
|
||||
$heading6_font_size: 14px;
|
||||
$heading6_line_height: 21px;
|
||||
$heading6_line_height: $heading6_font_size * 1.5;
|
||||
|
||||
$subheader_colour: #777;
|
||||
|
||||
$paragraph_margin: 0 0 20px 0;
|
||||
$paragraph_image_margin: 0;
|
||||
$paragraph_line_height: $base_font_size * 1.5;
|
||||
|
||||
$paragraph_lead_font_size: 21px;
|
||||
$paragraph_lead_line_height: 27px;
|
||||
$paragraph_lead_line_height: $paragraph_lead_font_size * 1.5;
|
||||
$paragraph_lead_colour: #777;
|
||||
|
||||
$strong_colour: #333;
|
||||
|
Loading…
x
Reference in New Issue
Block a user