feat: copy style for new project | have error
This commit is contained in:
28
assets/styles/base/_override.scss
Normal file
28
assets/styles/base/_override.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
$eHandyPrimaryColor: #0091ea;
|
||||
$eHandyPrimaryColor-invert: #fff;
|
||||
|
||||
// Set your colors
|
||||
$primary: $eHandyPrimaryColor;
|
||||
$primary-invert: $eHandyPrimaryColor-invert;
|
||||
|
||||
// Links
|
||||
$link: $primary;
|
||||
$link-invert: $primary-invert;
|
||||
$link-focus-border: $primary;
|
||||
|
||||
// 4. Setup your Custom Colors
|
||||
$linkedin: #0077b5;
|
||||
$linkedin-invert: findcolorinvert($linkedin);
|
||||
$twitter: #55acee;
|
||||
$twitter-invert: findcolorinvert($twitter);
|
||||
$github: #333;
|
||||
$github-invert: findcolorinvert($github);
|
||||
|
||||
// 5. Add new color variables to the color map.
|
||||
$addColors: (
|
||||
"twitter":($twitter, $twitter-invert),
|
||||
"linkedin": ($linkedin, $linkedin-invert),
|
||||
"github": ($github, $github-invert),
|
||||
"primary": ($primary, $primary-invert)
|
||||
);
|
||||
$colors: map-merge($colors, $addColors);
|
5
assets/styles/base/_typography.scss
Normal file
5
assets/styles/base/_typography.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
*,
|
||||
html,
|
||||
body {
|
||||
font-family: 'Montserrat', sans-serif !important;
|
||||
}
|
Reference in New Issue
Block a user