renommage dossiers
This commit is contained in:
parent
365d221431
commit
8292b542f2
13 changed files with 15 additions and 15 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
- corrections typo
|
||||
- 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)
|
||||
|
||||
|
|
|
@ -26,13 +26,12 @@ html {
|
|||
|
||||
html {
|
||||
/* 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);
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@include font-size(base);
|
||||
background-color: $background-base;
|
||||
color: $color-base;
|
|
@ -9,8 +9,8 @@
|
|||
|
||||
/*
|
||||
1- Reboot (basic reset)
|
||||
2- Libraries :
|
||||
- Base
|
||||
2- Base :
|
||||
- Reset
|
||||
- Print
|
||||
- Layout (alignment, modules, positionning)
|
||||
- Utilities (width and spacers helpers)
|
||||
|
@ -30,25 +30,25 @@
|
|||
- 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)
|
||||
// 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
|
||||
@import "_library/base"; // basic styles
|
||||
@import "_library/print"; // print quick reset
|
||||
@import "_library/layout"; // alignment, modules, positionning
|
||||
@import "_library/utilities"; // width and spacer helpers
|
||||
@import "_library/responsive"; // Responsive Web Design helpers
|
||||
// @import "_library/wordpress"; // WordPress reset and basic styles
|
||||
@import "base/reset"; // basic styles
|
||||
@import "base/print"; // print quick reset
|
||||
@import "base/layout"; // alignment, modules, positionning
|
||||
@import "base/utilities"; // width and spacer helpers
|
||||
@import "base/responsive"; // Responsive Web Design helpers
|
||||
// @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.
|
||||
@import "_library/grillade-grid"; // grid system with Grid Layout
|
||||
@import "base/grillade-grid"; // grid system with Grid Layout
|
||||
|
||||
// Components
|
||||
@import "components/media"; // media object
|
||||
|
|
Loading…
Add table
Reference in a new issue