ajout du patch min-width: 0
sur les flex-items
This commit is contained in:
parent
1bca49b368
commit
f70d820f83
14 changed files with 141 additions and 149 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KNACSS",
|
||||
"version": "4.4.2",
|
||||
"version": "4.4.3",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"authors": [
|
||||
"Raphaël GOETTER, Alsacreations"
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# changelog v4.4.3 (14 janvier 2016)
|
||||
|
||||
- ajout du patch `min-width: 0` sur les flex-items de grilles
|
||||
|
||||
# changelog v4.4.2 (24 décembre 2015)
|
||||
|
||||
- correction d'un bug responsive des classes `.flex-item-double`
|
||||
|
|
124
css/grillade.css
124
css/grillade.css
|
@ -1,6 +1,5 @@
|
|||
@charset "UTF-8";
|
||||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
/* ---------------------------------- */
|
||||
|
@ -14,244 +13,243 @@
|
|||
flex-wrap: wrap;
|
||||
margin-left: -2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed; }
|
||||
letter-spacing: -0.31em; }
|
||||
|
||||
/* grid childs */
|
||||
/* line 105, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 104, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-"] > * {
|
||||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px);
|
||||
min-width: 0;
|
||||
margin-left: 2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto; }
|
||||
letter-spacing: normal; }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-2"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 2 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-3"] > * {
|
||||
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-3"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 3 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-4"] > * {
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-4"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 4 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-5"] > * {
|
||||
width: calc(100% * 1 / 5 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-5"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 5 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-6"] > * {
|
||||
width: calc(100% * 1 / 6 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-6"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 6 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-7"] > * {
|
||||
width: calc(100% * 1 / 7 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-7"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 7 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-8"] > * {
|
||||
width: calc(100% * 1 / 8 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-8"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 8 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-10"] > * {
|
||||
width: calc(100% * 1 / 10 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-10"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 10 - 2rem); }
|
||||
|
||||
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-12"] > * {
|
||||
width: calc(100% * 1 / 12 - 2rem - .01px); }
|
||||
|
||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 122, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="grid-12"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 12 - 2rem); }
|
||||
|
||||
/* Responsive grid */
|
||||
@media (max-width: 640px) {
|
||||
/* line 171, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 170, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-4"] > * {
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
||||
/* line 174, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 173, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-4"] > .flex-item-double {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 177, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 176, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-3"] > * {
|
||||
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
||||
/* line 180, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 179, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-3"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 3 - 2rem - .01px); }
|
||||
/* line 183, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 182, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 186, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 185, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-2"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 189, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 188, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-1"] > * {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 192, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 191, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-small-1"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); } }
|
||||
|
||||
@media (max-width: 320px) {
|
||||
/* line 199, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 198, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-tiny-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 202, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 201, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-tiny-2"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 205, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 204, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-tiny-1"] > * {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 208, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 207, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
[class*="-tiny-1"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-1 > *:nth-child(odd) {
|
||||
width: calc(66.66667% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-1 > *:nth-child(even) {
|
||||
width: calc(33.33333% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-2 > *:nth-child(odd) {
|
||||
width: calc(33.33333% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-2 > *:nth-child(even) {
|
||||
width: calc(66.66667% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-2 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-1 > *:nth-child(odd) {
|
||||
width: calc(75% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-1 > *:nth-child(even) {
|
||||
width: calc(25% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-3 > *:nth-child(odd) {
|
||||
width: calc(25% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-3 > *:nth-child(even) {
|
||||
width: calc(75% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-3 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-2 > *:nth-child(odd) {
|
||||
width: calc(60% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-2 > *:nth-child(even) {
|
||||
width: calc(40% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-3-2 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-3 > *:nth-child(odd) {
|
||||
width: calc(40% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-3 > *:nth-child(even) {
|
||||
width: calc(60% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-2-3 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-4-1 > *:nth-child(odd) {
|
||||
width: calc(80% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-4-1 > *:nth-child(even) {
|
||||
width: calc(20% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-4-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 216, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 215, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-4 > *:nth-child(odd) {
|
||||
width: calc(20% - 2rem); }
|
||||
|
||||
/* line 220, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 219, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-4 > *:nth-child(even) {
|
||||
width: calc(80% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 225, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 224, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.grid-1-4 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 262, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 261, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.pull {
|
||||
margin-right: auto; }
|
||||
|
||||
/* line 266, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
/* line 265, /Users/raphael/Documents/GitHub/KNACSS/css/grillade.scss */
|
||||
.push {
|
||||
margin-left: auto; }
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
@ -98,7 +98,6 @@
|
|||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed;
|
||||
}
|
||||
|
||||
/* grid childs */
|
||||
|
@ -106,13 +105,13 @@
|
|||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: ~'calc(100% * 1 / @{number} - @{gutter} - .01px)';
|
||||
min-width: 0;
|
||||
margin-left: @gutter;
|
||||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
// LESS mixins for *equal* columns grid container
|
||||
|
@ -248,7 +247,6 @@
|
|||
.@{kna-namespace}pull {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.@{kna-namespace}push {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
@ -98,7 +98,6 @@ $kna-namespace: null !default;
|
|||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed;
|
||||
}
|
||||
|
||||
/* grid childs */
|
||||
|
@ -106,13 +105,13 @@ $kna-namespace: null !default;
|
|||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: calc(100% * 1 / #{$number} - #{$gutter} - .01px);
|
||||
min-width: 0;
|
||||
margin-left: $gutter;
|
||||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
// Sass mixins for *equal* columns grid container
|
||||
|
@ -266,7 +265,6 @@ $kna-namespace: null !default;
|
|||
.#{$kna-namespace}pull {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.#{$kna-namespace}push {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
||||
|
@ -691,7 +691,6 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
|||
margin-left: -2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed;
|
||||
}
|
||||
/* grid childs */
|
||||
[class*="grid-"] > * {
|
||||
|
@ -701,12 +700,12 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
|||
-ms-flex: 0 0 auto;
|
||||
flex: 0 0 auto;
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px);
|
||||
min-width: 0;
|
||||
margin-left: 2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto;
|
||||
}
|
||||
[class*="grid-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed;
|
||||
}
|
||||
|
||||
/* grid childs */
|
||||
|
@ -33,13 +32,13 @@
|
|||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: ~'calc(100% * 1 / @{number} - @{gutter} - .01px)';
|
||||
min-width: 0;
|
||||
margin-left: @gutter;
|
||||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
// LESS mixins for *equal* columns grid container
|
||||
|
@ -175,7 +174,6 @@
|
|||
.@{kna-namespace}pull {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.@{kna-namespace}push {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "knacss",
|
||||
"version": "4.4.2",
|
||||
"version": "4.4.3",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"bugs": "https://github.com/raphaelgoetter/KNACSS/issues",
|
||||
"author": [
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed;
|
||||
}
|
||||
|
||||
/* grid childs */
|
||||
|
@ -33,13 +32,13 @@
|
|||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: calc(100% * 1 / #{$number} - #{$gutter} - .01px);
|
||||
min-width: 0;
|
||||
margin-left: $gutter;
|
||||
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
// Sass mixins for *equal* columns grid container
|
||||
|
@ -193,7 +192,6 @@
|
|||
.#{$kna-namespace}pull {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.#{$kna-namespace}push {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
|
123
sass/knacss.css
123
sass/knacss.css
|
@ -1,6 +1,6 @@
|
|||
@charset "UTF-8";
|
||||
/*!
|
||||
* www.KNACSS.com V4.4.2 (24 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.4.3 (14 janvier 2016) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
||||
|
@ -744,244 +744,243 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
|||
flex-wrap: wrap;
|
||||
margin-left: -2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
letter-spacing: -0.31em;
|
||||
text-rendering: optimizespeed; }
|
||||
letter-spacing: -0.31em; }
|
||||
|
||||
/* grid childs */
|
||||
/* line 32, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 31, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-"] > * {
|
||||
box-sizing: border-box;
|
||||
flex: 0 0 auto;
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px);
|
||||
min-width: 0;
|
||||
margin-left: 2rem;
|
||||
/* inline-block fallback for IE9 generation */
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
letter-spacing: normal;
|
||||
text-rendering: auto; }
|
||||
letter-spacing: normal; }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-2"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 2 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-3"] > * {
|
||||
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-3"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 3 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-4"] > * {
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-4"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 4 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-5"] > * {
|
||||
width: calc(100% * 1 / 5 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-5"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 5 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-6"] > * {
|
||||
width: calc(100% * 1 / 6 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-6"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 6 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-7"] > * {
|
||||
width: calc(100% * 1 / 7 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-7"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 7 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-8"] > * {
|
||||
width: calc(100% * 1 / 8 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-8"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 8 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-10"] > * {
|
||||
width: calc(100% * 1 / 10 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-10"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 10 - 2rem); }
|
||||
|
||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-12"] > * {
|
||||
width: calc(100% * 1 / 12 - 2rem - .01px); }
|
||||
|
||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 49, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="grid-12"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 12 - 2rem); }
|
||||
|
||||
/* Responsive grid */
|
||||
@media (max-width: 640px) {
|
||||
/* line 98, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 97, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-4"] > * {
|
||||
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
||||
/* line 101, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 100, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-4"] > .flex-item-double {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 104, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 103, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-3"] > * {
|
||||
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
||||
/* line 107, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 106, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-3"] > .flex-item-double {
|
||||
width: calc(100% * 2 / 3 - 2rem - .01px); }
|
||||
/* line 110, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 109, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 113, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 112, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-2"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 116, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 115, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-1"] > * {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 119, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 118, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-small-1"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); } }
|
||||
|
||||
@media (max-width: 320px) {
|
||||
/* line 126, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 125, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-tiny-2"] > * {
|
||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||
/* line 129, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 128, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-tiny-2"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 132, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 131, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-tiny-1"] > * {
|
||||
width: calc(100% - 2rem - .01px); }
|
||||
/* line 135, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 134, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
[class*="-tiny-1"] > .flex-item-double {
|
||||
width: calc(100% - 2rem - .01px); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-1 > *:nth-child(odd) {
|
||||
width: calc(66.66667% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-1 > *:nth-child(even) {
|
||||
width: calc(33.33333% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-2 > *:nth-child(odd) {
|
||||
width: calc(33.33333% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-2 > *:nth-child(even) {
|
||||
width: calc(66.66667% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-2 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-1 > *:nth-child(odd) {
|
||||
width: calc(75% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-1 > *:nth-child(even) {
|
||||
width: calc(25% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-3 > *:nth-child(odd) {
|
||||
width: calc(25% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-3 > *:nth-child(even) {
|
||||
width: calc(75% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-3 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-2 > *:nth-child(odd) {
|
||||
width: calc(60% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-2 > *:nth-child(even) {
|
||||
width: calc(40% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-3-2 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-3 > *:nth-child(odd) {
|
||||
width: calc(40% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-3 > *:nth-child(even) {
|
||||
width: calc(60% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-2-3 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-4-1 > *:nth-child(odd) {
|
||||
width: calc(80% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-4-1 > *:nth-child(even) {
|
||||
width: calc(20% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-4-1 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 143, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-4 > *:nth-child(odd) {
|
||||
width: calc(20% - 2rem); }
|
||||
|
||||
/* line 147, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-4 > *:nth-child(even) {
|
||||
width: calc(80% - 2rem); }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
/* line 152, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 151, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.grid-1-4 > *:nth-child(n) {
|
||||
width: calc(100% - 2rem); } }
|
||||
|
||||
/* line 189, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 188, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.pull {
|
||||
margin-right: auto; }
|
||||
|
||||
/* line 193, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
/* line 192, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||
.push {
|
||||
margin-left: auto; }
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue