renommage dossiers

This commit is contained in:
Raphael 2019-07-17 11:15:55 +02:00
parent 365d221431
commit 8292b542f2
13 changed files with 15 additions and 15 deletions

View File

@ -4,6 +4,7 @@
- corrections typo - corrections typo
- support passé de IE10 à IE11 (browserlist) - support passé de IE10 à IE11 (browserlist)
- renommage de dossiers à la "7-1 pattern": `_config` > `abstracts`, `_library` > `base`, et du fichier `_base.scss` en `_reset.scss`
## Changelog v7.1.2 (30 janvier 2019) ## Changelog v7.1.2 (30 janvier 2019)

View File

@ -26,13 +26,12 @@ html {
html { html {
/* set base font-size to equiv "10px", which is adapted to rem unit */ /* set base font-size to equiv "10px", which is adapted to rem unit */
font-size: 62.5%;
/* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
font-size: calc(1em * 0.625); font-size: calc(1em * 0.625);
} }
body { body {
margin: 0; margin: 0;
padding: 0;
@include font-size(base); @include font-size(base);
background-color: $background-base; background-color: $background-base;
color: $color-base; color: $color-base;

View File

@ -9,8 +9,8 @@
/* /*
1- Reboot (basic reset) 1- Reboot (basic reset)
2- Libraries : 2- Base :
- Base - Reset
- Print - Print
- Layout (alignment, modules, positionning) - Layout (alignment, modules, positionning)
- Utilities (width and spacers helpers) - Utilities (width and spacers helpers)
@ -30,25 +30,25 @@
- Alerts - Alerts
*/ */
@import "_vendor/reboot"; // Bootstrap reboot (basic reset) (CSS file renamed and imported as if it was a partial because of libsass) @import "vendor/reboot"; // Bootstrap reboot (basic reset) (CSS file renamed and imported as if it was a partial because of libsass)
// WARNING : you should comment the following @import (variables) // WARNING : you should comment the following @import (variables)
// and move variables file from knacss folder to your own project folder! // and move variables file from knacss folder to your own project folder!
@import "_config/variables"; @import "abstracts/variables";
@import "_config/mixins"; @import "abstracts/mixins";
// Core Libraries // Core Libraries
@import "_library/base"; // basic styles @import "base/reset"; // basic styles
@import "_library/print"; // print quick reset @import "base/print"; // print quick reset
@import "_library/layout"; // alignment, modules, positionning @import "base/layout"; // alignment, modules, positionning
@import "_library/utilities"; // width and spacer helpers @import "base/utilities"; // width and spacer helpers
@import "_library/responsive"; // Responsive Web Design helpers @import "base/responsive"; // Responsive Web Design helpers
// @import "_library/wordpress"; // WordPress reset and basic styles // @import "base/wordpress"; // WordPress reset and basic styles
// New Grid System by default (Grid Layout). If you prefer old "Flexbox" Grid System, replace file with "_library/grillade-flex" // New Grid System by default (Grid Layout). If you prefer old "Flexbox" Grid System, replace file with "base/grillade-flex"
// Note that none of these files are prefixed by an underscore, in order to compile them. // Note that none of these files are prefixed by an underscore, in order to compile them.
@import "_library/grillade-grid"; // grid system with Grid Layout @import "base/grillade-grid"; // grid system with Grid Layout
// Components // Components
@import "components/media"; // media object @import "components/media"; // media object