correction flex-item-double
This commit is contained in:
parent
7709261653
commit
d944ff8ad2
10 changed files with 129 additions and 104 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "KNACSS",
|
"name": "KNACSS",
|
||||||
"version": "4.4.0",
|
"version": "4.4.1",
|
||||||
"homepage": "http://www.knacss.com/",
|
"homepage": "http://www.knacss.com/",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Raphaël GOETTER, Alsacreations"
|
"Raphaël GOETTER, Alsacreations"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com V4.4.0 (12 décembre 2015) @author: Raphael Goetter, Alsacreations
|
* www.KNACSS.com V4.4.1 (22 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
||||||
|
@ -766,25 +766,25 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
||||||
[class*="-small-4"] > * {
|
[class*="-small-4"] > * {
|
||||||
width: calc(100% * 1 / 4 - 2rem - .01px);
|
width: calc(100% * 1 / 4 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-4"] > .flexitem-double {
|
[class*="-small-4"] > .flex-item-double {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px);
|
width: calc(100% * 1 / 2 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > * {
|
[class*="-small-3"] > * {
|
||||||
width: calc(100% * 1 / 3 - 2rem - .01px);
|
width: calc(100% * 1 / 3 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > .flexitem-double {
|
[class*="-small-3"] > .flex-item-double {
|
||||||
width: calc(100% * 2 / 3 - 2rem - .01px);
|
width: calc(100% * 2 / 3 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > * {
|
[class*="-small-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px);
|
width: calc(100% * 1 / 2 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > .flexitem-double {
|
[class*="-small-2"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > * {
|
[class*="-small-1"] > * {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > .flexitem-double {
|
[class*="-small-1"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -792,13 +792,13 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
||||||
[class*="-tiny-2"] > * {
|
[class*="-tiny-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px);
|
width: calc(100% * 1 / 2 - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-2"] > .flexitem-double {
|
[class*="-tiny-2"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > * {
|
[class*="-tiny-1"] > * {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > .flexitem-double {
|
[class*="-tiny-1"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px);
|
width: calc(100% - 2rem - .01px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com V4.4.0 (12 décembre 2015) @author: Raphael Goetter, Alsacreations
|
* www.KNACSS.com V4.4.1 (22 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -88,25 +88,25 @@
|
||||||
[class*="-small-4"] > * {
|
[class*="-small-4"] > * {
|
||||||
width: ~'calc(100% * 1 / 4 - @{gutter} - .01px)';
|
width: ~'calc(100% * 1 / 4 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-4"] > .flexitem-double {
|
[class*="-small-4"] > .flex-item-double {
|
||||||
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > * {
|
[class*="-small-3"] > * {
|
||||||
width: ~'calc(100% * 1 / 3 - @{gutter} - .01px)';
|
width: ~'calc(100% * 1 / 3 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > .flexitem-double {
|
[class*="-small-3"] > .flex-item-double {
|
||||||
width: ~'calc(100% * 2 / 3 - @{gutter} - .01px)';
|
width: ~'calc(100% * 2 / 3 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > * {
|
[class*="-small-2"] > * {
|
||||||
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > .flexitem-double {
|
[class*="-small-2"] > .flex-item-double {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > * {
|
[class*="-small-1"] > * {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > .flexitem-double {
|
[class*="-small-1"] > .flex-item-double {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,13 +116,13 @@
|
||||||
[class*="-tiny-2"] > * {
|
[class*="-tiny-2"] > * {
|
||||||
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
width: ~'calc(100% * 1 / 2 - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-tiny-2"] > .flexitem-double {
|
[class*="-tiny-2"] > .flex-item-double {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > * {
|
[class*="-tiny-1"] > * {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > .flexitem-double {
|
[class*="-tiny-1"] > .flex-item-double {
|
||||||
width: ~'calc(100% - @{gutter} - .01px)';
|
width: ~'calc(100% - @{gutter} - .01px)';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "knacss",
|
"name": "knacss",
|
||||||
"version": "4.4.0",
|
"version": "4.4.1",
|
||||||
"homepage": "http://www.knacss.com/",
|
"homepage": "http://www.knacss.com/",
|
||||||
"bugs": "https://github.com/raphaelgoetter/KNACSS/issues",
|
"bugs": "https://github.com/raphaelgoetter/KNACSS/issues",
|
||||||
"author": [
|
"author": [
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com V4.4.0 (12 décembre 2015) @author: Raphael Goetter, Alsacreations
|
* www.KNACSS.com V4.4.1 (22 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -97,25 +97,25 @@
|
||||||
[class*="-small-4"] > * {
|
[class*="-small-4"] > * {
|
||||||
width: calc(100% * 1 / 4 - #{$gutter} - .01px);
|
width: calc(100% * 1 / 4 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-4"] > .flexitem-double {
|
[class*="-small-4"] > .flex-item-double {
|
||||||
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > * {
|
[class*="-small-3"] > * {
|
||||||
width: calc(100% * 1 / 3 - #{$gutter} - .01px);
|
width: calc(100% * 1 / 3 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-3"] > .flexitem-double {
|
[class*="-small-3"] > .flex-item-double {
|
||||||
width: calc(100% * 2 / 3 - #{$gutter} - .01px);
|
width: calc(100% * 2 / 3 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > * {
|
[class*="-small-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-2"] > .flexitem-double {
|
[class*="-small-2"] > .flex-item-double {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > * {
|
[class*="-small-1"] > * {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > .flexitem-double {
|
[class*="-small-1"] > .flex-item-double {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -125,13 +125,13 @@
|
||||||
[class*="-tiny-2"] > * {
|
[class*="-tiny-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
width: calc(100% * 1 / 2 - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-2"] > .flexitem-double {
|
[class*="-tiny-2"] > .flex-item-double {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > * {
|
[class*="-tiny-1"] > * {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-tiny-1"] > .flexitem-double {
|
[class*="-tiny-1"] > .flex-item-double {
|
||||||
width: calc(100% - #{$gutter} - .01px);
|
width: calc(100% - #{$gutter} - .01px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
179
sass/knacss.css
179
sass/knacss.css
|
@ -1,6 +1,6 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com V4.3.6 (10 novembre 2015) @author: Raphael Goetter, Alsacreations
|
* www.KNACSS.com V4.4.1 (22 décembre 2015) @author: Raphael Goetter, Alsacreations
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
|
||||||
|
@ -445,22 +445,21 @@ html {
|
||||||
|
|
||||||
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 48, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
body {
|
body {
|
||||||
/* set body font-size in em (1.4em equiv "14px") */
|
font-size: 1.4rem;
|
||||||
font-size: 1.4em;
|
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
color: #000;
|
color: #000;
|
||||||
font-family: Helvetica, Arial, sans-serif;
|
font-family: sans-serif;
|
||||||
line-height: 1.5; }
|
line-height: 1.5; }
|
||||||
|
|
||||||
/* line 59, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 57, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
a {
|
a {
|
||||||
color: #333; }
|
color: #333; }
|
||||||
/* line 61, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 59, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
a:hover, a:focus, a:active {
|
a:hover, a:focus, a:active {
|
||||||
color: #000; }
|
color: #000; }
|
||||||
|
|
||||||
/* font-sizing for content */
|
/* font-sizing for content */
|
||||||
/* line 66, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 64, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
p,
|
p,
|
||||||
.p-like,
|
.p-like,
|
||||||
ul,
|
ul,
|
||||||
|
@ -479,54 +478,54 @@ figure {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
line-height: 1.5; }
|
line-height: 1.5; }
|
||||||
|
|
||||||
/* line 71, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 69, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h1, .h1-like {
|
h1, .h1-like {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
font-family: Helvetica, Arial, sans-serif; }
|
font-family: sans-serif; }
|
||||||
|
|
||||||
/* line 76, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 74, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h2, .h2-like {
|
h2, .h2-like {
|
||||||
font-size: 2.8rem;
|
font-size: 2.8rem;
|
||||||
font-family: Helvetica, Arial, sans-serif; }
|
font-family: sans-serif; }
|
||||||
|
|
||||||
/* line 81, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 79, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h3, .h3-like {
|
h3, .h3-like {
|
||||||
font-size: 2.4rem; }
|
font-size: 2.4rem; }
|
||||||
|
|
||||||
/* line 85, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 83, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h4, .h4-like {
|
h4, .h4-like {
|
||||||
font-size: 2rem; }
|
font-size: 2rem; }
|
||||||
|
|
||||||
/* line 89, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 87, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h5, .h5-like {
|
h5, .h5-like {
|
||||||
font-size: 1.8rem; }
|
font-size: 1.8rem; }
|
||||||
|
|
||||||
/* line 93, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 91, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
h6, .h6-like {
|
h6, .h6-like {
|
||||||
font-size: 1.6rem; }
|
font-size: 1.6rem; }
|
||||||
|
|
||||||
/* alternate font-sizing */
|
/* alternate font-sizing */
|
||||||
/* line 99, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 97, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
.smaller {
|
.smaller {
|
||||||
font-size: 0.6em; }
|
font-size: 0.6em; }
|
||||||
|
|
||||||
/* line 102, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 100, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
.small {
|
.small {
|
||||||
font-size: 0.8em; }
|
font-size: 0.8em; }
|
||||||
|
|
||||||
/* line 106, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 104, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
.big {
|
.big {
|
||||||
font-size: 1.2em; }
|
font-size: 1.2em; }
|
||||||
|
|
||||||
/* line 110, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 108, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
.bigger {
|
.bigger {
|
||||||
font-size: 1.5em; }
|
font-size: 1.5em; }
|
||||||
|
|
||||||
/* line 114, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 112, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
.biggest {
|
.biggest {
|
||||||
font-size: 2em; }
|
font-size: 2em; }
|
||||||
|
|
||||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 121, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
code,
|
code,
|
||||||
pre,
|
pre,
|
||||||
samp,
|
samp,
|
||||||
|
@ -534,10 +533,10 @@ kbd {
|
||||||
/* IE fix */
|
/* IE fix */
|
||||||
white-space: pre-line;
|
white-space: pre-line;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
font-family: Consolas, DejaVu Sans Mono, Courier, monospace;
|
font-family: consolas, courier, monospace;
|
||||||
line-height: normal; }
|
line-height: normal; }
|
||||||
|
|
||||||
/* line 129, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 127, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
em,
|
em,
|
||||||
.italic,
|
.italic,
|
||||||
address,
|
address,
|
||||||
|
@ -550,7 +549,7 @@ var {
|
||||||
/* == browsers consistency */
|
/* == browsers consistency */
|
||||||
/* ----------------------------- */
|
/* ----------------------------- */
|
||||||
/* avoid top margins on first content element */
|
/* avoid top margins on first content element */
|
||||||
/* line 141, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 139, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
p:first-child,
|
p:first-child,
|
||||||
.p-like:first-child,
|
.p-like:first-child,
|
||||||
ul:first-child,
|
ul:first-child,
|
||||||
|
@ -573,7 +572,7 @@ h6:first-child,
|
||||||
margin-top: 0; }
|
margin-top: 0; }
|
||||||
|
|
||||||
/* avoid margins on nested elements */
|
/* avoid margins on nested elements */
|
||||||
/* line 146, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 144, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
li p,
|
li p,
|
||||||
li .p-like,
|
li .p-like,
|
||||||
li ul,
|
li ul,
|
||||||
|
@ -582,7 +581,7 @@ li ol {
|
||||||
margin-bottom: 0; }
|
margin-bottom: 0; }
|
||||||
|
|
||||||
/* max values */
|
/* max values */
|
||||||
/* line 162, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 160, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
img,
|
img,
|
||||||
table,
|
table,
|
||||||
td,
|
td,
|
||||||
|
@ -596,7 +595,7 @@ svg {
|
||||||
max-width: 100%; }
|
max-width: 100%; }
|
||||||
|
|
||||||
/* margin-bottom on tables */
|
/* margin-bottom on tables */
|
||||||
/* line 167, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
/* line 165, /Users/raphael/Documents/GitHub/KNACSS/sass/_01b-base.scss */
|
||||||
table {
|
table {
|
||||||
margin-bottom: 2rem; }
|
margin-bottom: 2rem; }
|
||||||
|
|
||||||
|
@ -604,20 +603,20 @@ table {
|
||||||
/* ==layout and modules */
|
/* ==layout and modules */
|
||||||
/* ----------------------------- */
|
/* ----------------------------- */
|
||||||
/* module, gains superpower "BFC" Block Formating Context */
|
/* module, gains superpower "BFC" Block Formating Context */
|
||||||
/* line 5, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 7, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.mod,
|
.mod,
|
||||||
.bfc {
|
.bfc {
|
||||||
overflow: hidden; }
|
overflow: hidden; }
|
||||||
|
|
||||||
/* blocks that needs to be placed under floats */
|
/* blocks that needs to be placed under floats */
|
||||||
/* line 10, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 11, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.clear,
|
.clear,
|
||||||
.line,
|
.line,
|
||||||
.row {
|
.row {
|
||||||
clear: both; }
|
clear: both; }
|
||||||
|
|
||||||
/* blocks that must contain floats */
|
/* blocks that must contain floats */
|
||||||
/* line 17, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 18, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.clearfix::after,
|
.clearfix::after,
|
||||||
.line::after {
|
.line::after {
|
||||||
content: "";
|
content: "";
|
||||||
|
@ -626,74 +625,74 @@ table {
|
||||||
border-collapse: collapse; }
|
border-collapse: collapse; }
|
||||||
|
|
||||||
/* simple blocks alignment */
|
/* simple blocks alignment */
|
||||||
/* line 25, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 26, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.left {
|
.left {
|
||||||
margin-right: auto; }
|
margin-right: auto; }
|
||||||
|
|
||||||
/* line 28, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 29, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.right {
|
.right {
|
||||||
margin-left: auto; }
|
margin-left: auto; }
|
||||||
|
|
||||||
/* line 32, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 33, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.center {
|
.center {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto; }
|
margin-right: auto; }
|
||||||
|
|
||||||
/* text and contents alignment */
|
/* text and contents alignment */
|
||||||
/* line 39, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 40, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.txtleft {
|
.txtleft {
|
||||||
text-align: left; }
|
text-align: left; }
|
||||||
|
|
||||||
/* line 42, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 43, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.txtright {
|
.txtright {
|
||||||
text-align: right; }
|
text-align: right; }
|
||||||
|
|
||||||
/* line 46, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.txtcenter {
|
.txtcenter {
|
||||||
text-align: center; }
|
text-align: center; }
|
||||||
|
|
||||||
/* floating elements */
|
/* floating elements */
|
||||||
/* line 52, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 53, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.fl {
|
.fl {
|
||||||
float: left; }
|
float: left; }
|
||||||
|
|
||||||
/* line 55, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 56, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
img.fl {
|
img.fl {
|
||||||
margin-right: 1rem; }
|
margin-right: 1rem; }
|
||||||
|
|
||||||
/* line 59, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 60, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.fr {
|
.fr {
|
||||||
float: right; }
|
float: right; }
|
||||||
|
|
||||||
/* line 63, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 64, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
img.fr {
|
img.fr {
|
||||||
margin-left: 1rem; }
|
margin-left: 1rem; }
|
||||||
|
|
||||||
/* line 67, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 68, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
img.fl,
|
img.fl,
|
||||||
img.fr {
|
img.fr {
|
||||||
margin-bottom: 0.5rem; }
|
margin-bottom: 0.5rem; }
|
||||||
|
|
||||||
/* table layout */
|
/* table layout */
|
||||||
/* line 73, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 74, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.row {
|
.row {
|
||||||
display: table;
|
display: table;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
|
||||||
/* line 78, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 79, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.row > *,
|
.row > *,
|
||||||
.col {
|
.col {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: top; }
|
vertical-align: top; }
|
||||||
|
|
||||||
/* no table-cell for script tag when body is a .row */
|
/* no table-cell for script tag when body is a .row */
|
||||||
/* line 86, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 87, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
body > script {
|
body > script {
|
||||||
display: none !important; }
|
display: none !important; }
|
||||||
|
|
||||||
/* inline-block */
|
/* inline-block */
|
||||||
/* line 90, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 91, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.inbl {
|
.inbl {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top; }
|
vertical-align: top; }
|
||||||
|
@ -701,36 +700,36 @@ body > script {
|
||||||
/* flexbox layout
|
/* flexbox layout
|
||||||
http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
||||||
*/
|
*/
|
||||||
/* line 100, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 101, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
[class*="flex-container"] {
|
[class*="flex-container"] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap; }
|
flex-wrap: wrap; }
|
||||||
|
|
||||||
/* line 103, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 104, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-container-h {
|
.flex-container-h {
|
||||||
flex-direction: row; }
|
flex-direction: row; }
|
||||||
|
|
||||||
/* line 107, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 108, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-container-v {
|
.flex-container-v {
|
||||||
flex-direction: column; }
|
flex-direction: column; }
|
||||||
|
|
||||||
/* line 111, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 112, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-item-fluid {
|
.flex-item-fluid {
|
||||||
flex: 1; }
|
flex: 1; }
|
||||||
|
|
||||||
/* line 115, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 116, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-item-first {
|
.flex-item-first {
|
||||||
order: -1; }
|
order: -1; }
|
||||||
|
|
||||||
/* line 119, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 120, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-item-medium {
|
.flex-item-medium {
|
||||||
order: 0; }
|
order: 0; }
|
||||||
|
|
||||||
/* line 123, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 124, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-item-last {
|
.flex-item-last {
|
||||||
order: 1; }
|
order: 1; }
|
||||||
|
|
||||||
/* line 127, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
/* line 128, /Users/raphael/Documents/GitHub/KNACSS/sass/_02-layout.scss */
|
||||||
.flex-item-center {
|
.flex-item-center {
|
||||||
margin: auto; }
|
margin: auto; }
|
||||||
|
|
||||||
|
@ -838,25 +837,25 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
||||||
[class*="-small-4"] > * {
|
[class*="-small-4"] > * {
|
||||||
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
width: calc(100% * 1 / 4 - 2rem - .01px); }
|
||||||
/* line 100, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 100, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-4"] > .flexitem-double {
|
[class*="-small-4"] > .flex-item-double {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||||
/* line 103, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 103, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-3"] > * {
|
[class*="-small-3"] > * {
|
||||||
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
width: calc(100% * 1 / 3 - 2rem - .01px); }
|
||||||
/* line 106, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 106, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-3"] > .flexitem-double {
|
[class*="-small-3"] > .flex-item-double {
|
||||||
width: calc(100% * 2 / 3 - 2rem - .01px); }
|
width: calc(100% * 2 / 3 - 2rem - .01px); }
|
||||||
/* line 109, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 109, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-2"] > * {
|
[class*="-small-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||||
/* line 112, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 112, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-2"] > .flexitem-double {
|
[class*="-small-2"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px); }
|
width: calc(100% - 2rem - .01px); }
|
||||||
/* line 115, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 115, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-1"] > * {
|
[class*="-small-1"] > * {
|
||||||
width: calc(100% - 2rem - .01px); }
|
width: calc(100% - 2rem - .01px); }
|
||||||
/* line 118, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 118, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-small-1"] > .flexitem-double {
|
[class*="-small-1"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px); } }
|
width: calc(100% - 2rem - .01px); } }
|
||||||
|
|
||||||
@media (max-width: 320px) {
|
@media (max-width: 320px) {
|
||||||
|
@ -864,13 +863,13 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
||||||
[class*="-tiny-2"] > * {
|
[class*="-tiny-2"] > * {
|
||||||
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
width: calc(100% * 1 / 2 - 2rem - .01px); }
|
||||||
/* line 128, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 128, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-tiny-2"] > .flexitem-double {
|
[class*="-tiny-2"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px); }
|
width: calc(100% - 2rem - .01px); }
|
||||||
/* line 131, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 131, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-tiny-1"] > * {
|
[class*="-tiny-1"] > * {
|
||||||
width: calc(100% - 2rem - .01px); }
|
width: calc(100% - 2rem - .01px); }
|
||||||
/* line 134, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 134, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
[class*="-tiny-1"] > .flexitem-double {
|
[class*="-tiny-1"] > .flex-item-double {
|
||||||
width: calc(100% - 2rem - .01px); } }
|
width: calc(100% - 2rem - .01px); } }
|
||||||
|
|
||||||
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
/* line 142, /Users/raphael/Documents/GitHub/KNACSS/sass/_03-grids.scss */
|
||||||
|
@ -1387,70 +1386,90 @@ s,m,l,n = small, medium, large, none
|
||||||
margin-left: 4rem; }
|
margin-left: 4rem; }
|
||||||
|
|
||||||
/* line 257, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 257, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
|
.mauto {
|
||||||
|
margin: auto; }
|
||||||
|
|
||||||
|
/* line 261, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
|
.mtauto {
|
||||||
|
margin-top: auto; }
|
||||||
|
|
||||||
|
/* line 265, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
|
.mrauto {
|
||||||
|
margin-right: auto; }
|
||||||
|
|
||||||
|
/* line 269, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
|
.mbauto {
|
||||||
|
margin-bottom: auto; }
|
||||||
|
|
||||||
|
/* line 273, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
|
.mlauto {
|
||||||
|
margin-left: auto; }
|
||||||
|
|
||||||
|
/* line 277, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.ptn,
|
.ptn,
|
||||||
.pt0 {
|
.pt0 {
|
||||||
padding-top: 0; }
|
padding-top: 0; }
|
||||||
|
|
||||||
/* line 261, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 281, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pts {
|
.pts {
|
||||||
padding-top: 1rem; }
|
padding-top: 1rem; }
|
||||||
|
|
||||||
/* line 265, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 285, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.ptm {
|
.ptm {
|
||||||
padding-top: 2rem; }
|
padding-top: 2rem; }
|
||||||
|
|
||||||
/* line 269, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 289, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.ptl {
|
.ptl {
|
||||||
padding-top: 4rem; }
|
padding-top: 4rem; }
|
||||||
|
|
||||||
/* line 273, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 293, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.prn,
|
.prn,
|
||||||
.pr0 {
|
.pr0 {
|
||||||
padding-right: 0; }
|
padding-right: 0; }
|
||||||
|
|
||||||
/* line 277, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 297, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.prs {
|
.prs {
|
||||||
padding-right: 1rem; }
|
padding-right: 1rem; }
|
||||||
|
|
||||||
/* line 281, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 301, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.prm {
|
.prm {
|
||||||
padding-right: 2rem; }
|
padding-right: 2rem; }
|
||||||
|
|
||||||
/* line 285, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 305, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.prl {
|
.prl {
|
||||||
padding-right: 4rem; }
|
padding-right: 4rem; }
|
||||||
|
|
||||||
/* line 289, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 309, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pbn,
|
.pbn,
|
||||||
.pb0 {
|
.pb0 {
|
||||||
padding-bottom: 0; }
|
padding-bottom: 0; }
|
||||||
|
|
||||||
/* line 293, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 313, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pbs {
|
.pbs {
|
||||||
padding-bottom: 1rem; }
|
padding-bottom: 1rem; }
|
||||||
|
|
||||||
/* line 297, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 317, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pbm {
|
.pbm {
|
||||||
padding-bottom: 2rem; }
|
padding-bottom: 2rem; }
|
||||||
|
|
||||||
/* line 301, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 321, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pbl {
|
.pbl {
|
||||||
padding-bottom: 4rem; }
|
padding-bottom: 4rem; }
|
||||||
|
|
||||||
/* line 305, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 325, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pln,
|
.pln,
|
||||||
.pl0 {
|
.pl0 {
|
||||||
padding-left: 0; }
|
padding-left: 0; }
|
||||||
|
|
||||||
/* line 309, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 329, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pls {
|
.pls {
|
||||||
padding-left: 1rem; }
|
padding-left: 1rem; }
|
||||||
|
|
||||||
/* line 313, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 333, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.plm {
|
.plm {
|
||||||
padding-left: 2rem; }
|
padding-left: 2rem; }
|
||||||
|
|
||||||
/* line 317, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
/* line 337, /Users/raphael/Documents/GitHub/KNACSS/sass/_06-helpers.scss */
|
||||||
.pll {
|
.pll {
|
||||||
padding-left: 4rem; }
|
padding-left: 4rem; }
|
||||||
|
|
||||||
|
@ -1868,16 +1887,22 @@ s,m,l,n = small, medium, large, none
|
||||||
a {
|
a {
|
||||||
word-break: break-all; } }
|
word-break: break-all; } }
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
||||||
|
.no-wrapping {
|
||||||
|
word-wrap: normal;
|
||||||
|
hyphens: manual; } }
|
||||||
|
|
||||||
/* Google Gmap3 bug fix on images */
|
/* Google Gmap3 bug fix on images */
|
||||||
/* line 46, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
/* line 54, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
||||||
.gm-style img {
|
.gm-style img {
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
|
|
||||||
/* line 50, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
/* line 58, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
||||||
:not(.gm-style) img {
|
:not(.gm-style) img {
|
||||||
height: auto; }
|
height: auto; }
|
||||||
|
|
||||||
/* line 56, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
/* line 64, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
|
||||||
.gm-style img,
|
.gm-style img,
|
||||||
.gmnoscreen img,
|
.gmnoscreen img,
|
||||||
.gmnoprint img {
|
.gmnoprint img {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue