SCSS update

This commit is contained in:
2020-02-05 16:13:09 +01:00
parent 4388d34333
commit 1521ab7b9c
3 changed files with 20 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ html {
}
body {
@include font-smooth;
background: $color-primary;
background: #fff;
cursor: default;
}
*, *:before, *:after {

View File

@@ -1,5 +1,5 @@
// Colors
$color-primary: #fff;
$color-primary: pink;
$color-secondary: #000;
$color-text: #333;

View File

@@ -1,32 +1,34 @@
@charset "UTF-8";
@charset "utf-8";
// Tools
@import "../style/variables";
@import "../style/tools/mixins";
@import "../style/tools/functions";
@import "../style/tools/helpers";
@import "variables";
@import "tools/mixins";
@import "tools/functions";
@import "tools/helpers";
// Dependencies
@import "node_modules/normalize.css/normalize";
@import "normalize.css/normalize";
// @import "bulma/css/bulma.min";
// @import "@fortawesome/fontawesome-free/css/all.min";
// Base
@import "../style/base";
@import "../style/fonts";
@import "base";
@import "fonts";
// Layout
@import "../style/layout/header";
@import "../style/layout/nav";
@import "../style/layout/main";
@import "../style/layout/footer";
@import "layout/header";
@import "layout/nav";
@import "layout/main";
@import "layout/footer";
// Modules
// @import "../style/modules/module";
// @import "modules/module";
// Components
// @import "../style/components/component";
// @import "components/component";
// Animations
// @import "../style/../animations/animation";
// @import "animations/animation";
// Responsive
// @import "../style/layout/responsive";
// @import "layout/responsive";