Reset, reset
This commit is contained in:
@ -1,18 +0,0 @@
|
||||
/*
|
||||
* Animation
|
||||
* Animation settings.
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/23
|
||||
*/
|
||||
$s-animation--ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
|
||||
$s-animation--ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
||||
$s-animation--ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
|
||||
|
||||
$s-animation--ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
$s-animation--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
|
||||
$s-animation--ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
|
||||
|
||||
$s-animation--ease-in-out-curve: $s-animation--ease-in-out-quart;
|
||||
$s-animation--ease-in-curve: $s-animation--ease-in-quart;
|
||||
$s-animation--ease-out-curve: $s-animation--ease-out-quart;
|
@ -1,24 +0,0 @@
|
||||
/*
|
||||
* Color Settings
|
||||
* Provides settings for colors
|
||||
*
|
||||
* Dependencies:
|
||||
*
|
||||
* Version:
|
||||
* 1.1.0 - 2018/02/23
|
||||
*/
|
||||
|
||||
//Fonts
|
||||
$s-color--text: black;
|
||||
$s-color--links: #FC78DE;
|
||||
$s-color--links-hover: $s-color--links;
|
||||
|
||||
//Backgrounds
|
||||
$s-color--background-default: #FEFCF8;
|
||||
$s-color--background-top: #F9F;
|
||||
$s-color--background-bottom: #BEF;
|
||||
|
||||
//Borders
|
||||
$s-thickness--border-default: 1px;
|
||||
$s-thickness--border-thick: 3px;
|
||||
$s-color--border--default: $s-thickness--border-default solid #DDD;
|
@ -1,10 +0,0 @@
|
||||
/*
|
||||
* Layout Settings
|
||||
* Provides settings for layouts
|
||||
*
|
||||
* Dependencies:
|
||||
*
|
||||
* Version:
|
||||
* 1.0.1 - 2018/02/24
|
||||
*/
|
||||
$s-layout--page-max: 1200px;
|
@ -1,43 +0,0 @@
|
||||
/*
|
||||
* Responsive Settings
|
||||
* Provides settings for responsive tools
|
||||
*
|
||||
* Dependencies:
|
||||
*
|
||||
* Version:
|
||||
* 1.0.1 - 2018/02/23
|
||||
*/
|
||||
|
||||
//Pixel size definitions
|
||||
$s-screen-xsmall: 500px;
|
||||
$s-screen-small: 750px;
|
||||
$s-screen-medium: 1000px;
|
||||
$s-screen-large: 1250px;
|
||||
$s-screen-xlarge: 1500px;
|
||||
|
||||
//Size definitions
|
||||
$s-xsmall: 'xsmall';
|
||||
$s-small: 'small';
|
||||
$s-medium: 'medium';
|
||||
$s-large: 'large';
|
||||
$s-xlarge: 'xlarge';
|
||||
|
||||
//Groups
|
||||
$s-xsmall-up: 'xsmall-up';
|
||||
$s-small-up: 'small-up';
|
||||
$s-medium-up: 'medium-up';
|
||||
$s-large-up: 'large-up';
|
||||
|
||||
//Breakpoints
|
||||
$s-breakpoints: (
|
||||
$s-xsmall '(max-width: #{$s-screen-small - 1})',
|
||||
$s-small '(min-width: #{$s-screen-small}) and (max-width: #{$s-screen-medium - 1})',
|
||||
$s-medium '(min-width: #{$s-screen-medium}) and (max-width: #{$s-screen-large - 1})',
|
||||
$s-large '(min-width: #{$s-screen-large}) and (max-width: #{$s-screen-xlarge - 1})',
|
||||
$s-xlarge '(min-width: #{$s-screen-xlarge})',
|
||||
|
||||
$s-xsmall-up '(min-width: #{$s-screen-xsmall})',
|
||||
$s-small-up '(min-width: #{$s-screen-small})',
|
||||
$s-medium-up '(min-width: #{$s-screen-medium})',
|
||||
$s-large-up '(min-width: #{$s-screen-large})'
|
||||
);
|
@ -1,16 +0,0 @@
|
||||
/*
|
||||
* Typography Settings
|
||||
* Provides the type variables for use throughout the theme
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/23
|
||||
*/
|
||||
|
||||
$s-font--stack-default: Arial, Helvetica, sans-serif;
|
||||
$s-font--stack-headings: 'Bitter', serif;
|
||||
$s-font--size--base: 16px;
|
||||
|
||||
|
||||
%s-font--navigation {
|
||||
font-family: $s-font--stack-headings;
|
||||
}
|
Reference in New Issue
Block a user