settings +font-families,+font,+headings,+measurements,+spacing

This commit is contained in:
spongycake 2022-02-02 12:27:17 +00:00
parent d8a23ee29b
commit 610dd16b15
5 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,5 @@
//==============================================================================
// Font Families
//==============================================================================
$font-family-sans-serif: Arial, sans-serif !default;

View File

@ -0,0 +1,33 @@
@import "font-families";
// =========================================================
// Font families
// =========================================================
// font families to use for all typography on screens
$font-family: $font-family-sans-serif !default;
// font families to use for print media
// We recommend that you use system fonts when printing. This will avoid issues
// with some printer drivers and operating systems.
$font-family-print: sans-serif !default;
// =========================================================
// Font size
// =========================================================
//Base size
$font-size-base: 1rem * 1.25 !default;
// =========================================================
// Font weights
// =========================================================
// font weight for regular typography
$font-weight-regular: 400 !default;
// font weight for bold typography
$font-weight-bold: 700 !default;

View File

@ -0,0 +1,22 @@
//==============================================================================
// Headings
//==============================================================================
$headings-margin-bottom: 20px;
$headings-font-weight: $font-weight-bold;
$headings-line-height: 1.4em;
$h1-font-size: $font-size-base * 2.5 !default;
$h2-font-size: $font-size-base * 2 !default;
$h3-font-size: $font-size-base * 1.75 !default;
$h4-font-size: $font-size-base * 1.5 !default;
$h5-font-size: $font-size-base * 1.25 !default;
$h6-font-size: $font-size-base !default;
//==============================================================================
// Paragraphs
//==============================================================================
// lead
$lead-font-size: $font-size-base * 1.25 !default;
$lead-font-weight: $font-weight-regular !default;

View File

@ -0,0 +1,13 @@
// =========================================================
// Page layout
// =========================================================
// width of main container
$container-page-width: 1200px !default;
// width of gutter between grid columns
$gutter: 30px;
$gutter-half: $gutter / 2;

View File

@ -0,0 +1 @@
$paragraph-margin-bottom: 1rem !default;