renommage des variables

This commit is contained in:
Raphael Goetter 2016-11-22 14:47:41 +01:00
parent b1d5168221
commit f609505066
5 changed files with 20 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "KNACSS", "name": "KNACSS",
"version": "6.0.3", "version": "6.0.4",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"authors": [ "authors": [
"Raphaël GOETTER, Alsacreations" "Raphaël GOETTER, Alsacreations"

View File

@ -1,3 +1,6 @@
# changelog v6.0.4 (22 novembre 2016)
- renommage des variables
# changelog v6.0.3 (10 novembre 2016) # changelog v6.0.3 (10 novembre 2016)
- renommage `grid-item-*` en `item-*` pour éviter [les conflits](https://github.com/alsacreations/KNACSS/issues/222) - renommage `grid-item-*` en `item-*` pour éviter [les conflits](https://github.com/alsacreations/KNACSS/issues/222)

View File

@ -1,6 +1,6 @@
{ {
"name": "knacss", "name": "knacss",
"version": "6.0.3", "version": "6.0.4",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues", "bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": [ "author": [

View File

@ -15,15 +15,18 @@ $font-stack-common : sans-serif !default; // common font
$font-stack-headings : sans-serif !default; // headings font $font-stack-headings : sans-serif !default; // headings font
$font-stack-monospace : consolas, courier, monospace !default; // monospace font $font-stack-monospace : consolas, courier, monospace !default; // monospace font
// colors (content and/or backgrounds) // color scheme
$base-color : #000 !default; $color1 : #000 !default;
$alpha-color : #fff !default; $color2 : #fff !default;
$beta-color : #333 !default; $color3 : #333 !default;
$gamma-color : #000 !default; $color4 : #000 !default;
$delta-color : #000 !default;
$epsilon-color : #000 !default; // colors used
$zeta-color : #333 !default; $base-color: $color1;
$theta-color : #000 !default; $link-color: $color3;
$base-background : $color2;
$link-hover-color: $color4;
// spacings (choose unit you prefer) // spacings (choose unit you prefer)
$tiny-value : .5rem !default; // tiny value for margins / paddings $tiny-value : .5rem !default; // tiny value for margins / paddings

View File

@ -21,16 +21,16 @@ html {
body { body {
font-size: $base-font-size; font-size: $base-font-size;
background-color: $alpha-color; background-color: $base-background;
color: $base-color; color: $base-color;
font-family: $font-stack-common; font-family: $font-stack-common;
line-height: $line-height; line-height: $line-height;
} }
a { a {
color: $zeta-color; color: $link-color;
&:hover, &:focus, &:active { &:hover, &:focus, &:active {
color: $base-color; color: $link-hover-color;
} }
} }