From 7a43f8ec4ec9e5f378490407b6afaa7c463e1ed4 Mon Sep 17 00:00:00 2001 From: raphaelgoettter Date: Thu, 5 Mar 2015 15:21:57 +0100 Subject: [PATCH] compilation des fichiers CSS --- .gitignore | 1 + css/knacss-unminified.css | 1960 +++++++++++++++++++++++++------------ css/knacss.css | 4 +- less/_00-config.less | 5 + less/_01-base.less | 5 - less/_11-wordpress.less | 4 + sass/_00-config.scss | 5 + sass/_01-base.scss | 5 - sass/_11-wordpress.scss | 4 + 9 files changed, 1347 insertions(+), 646 deletions(-) diff --git a/.gitignore b/.gitignore index c1bb859..68576a0 100644 --- a/.gitignore +++ b/.gitignore @@ -162,3 +162,4 @@ pip-log.txt # Mac crap .DS_Store /README 1.md +*.cfg diff --git a/css/knacss-unminified.css b/css/knacss-unminified.css index 59cc4a5..7550d0b 100644 --- a/css/knacss-unminified.css +++ b/css/knacss-unminified.css @@ -1,16 +1,17 @@ /*! -* www.KNACSS.com V3.1.0 (2014-10-20) @author: Raphael Goetter, Alsacreations +* www.KNACSS.com V4.0.0 BETA (2015-03-05) @author: Raphael Goetter, Alsacreations * Licence WTFPL http://www.wtfpl.net/ */ /* ----------------------------- */ /* == soft reset */ /* ----------------------------- */ -/* switching box model for all elements */ -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; +/* switching to border-box model for all elements */ +html { box-sizing: border-box; } +* { + box-sizing: inherit; +} /* soft reset */ html, body { @@ -25,10 +26,13 @@ ul.unstyled { list-style: none; } img { - height: auto; vertical-align: middle; border: 0; } +/* height auto only for non SVG images */ +img:not([src$=".svg"]) { + height: auto; +} blockquote, figure { margin-left: 0; @@ -50,7 +54,6 @@ html { font-size: 62.5%; /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */ /* thanks to @guardian, @victorbritopro and @eQRoeil */ - font-size: -webkit-calc(0.625em); font-size: calc(0.625em); /* disallow text zooming on orientation change (non standard property) */ -webkit-text-size-adjust: 100%; @@ -119,19 +122,19 @@ h6, } /* alternate font-sizing */ .smaller { - font-size: 0.71em; + font-size: 0.6em; } .small { - font-size: 0.86em; + font-size: 0.8em; } .big { - font-size: 1.14em; + font-size: 1.2em; } .bigger { - font-size: 1.29em; + font-size: 1.5em; } .biggest { - font-size: 1.43em; + font-size: 2em; } code, pre, @@ -140,7 +143,7 @@ kbd { /* IE fix */ white-space: pre-line; white-space: pre-wrap; - font-family: Consolas, 'DejaVu Sans Mono', Courier, monospace; + font-family: Consolas, "DejaVu Sans Mono", Courier, monospace; line-height: normal; } em, @@ -174,9 +177,6 @@ sup { overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; } -body > script { - display: none !important; -} @media (max-width: 768px) { .no-small-screen { display: none; @@ -199,11 +199,17 @@ dl:first-child, blockquote:first-child, pre:first-child, h1:first-child, +.h1-like:first-child, h2:first-child, +.h2-like:first-child, h3:first-child, +.h3-like:first-child, h4:first-child, +.h4-like:first-child, h5:first-child, -h6:first-child { +.h5-like:first-child, +h6:first-child, +.h6-like:first-child { margin-top: 0; } /* avoid margins on nested elements */ @@ -233,7 +239,6 @@ table { /* ----------------------------- */ /* ==layout and modules */ /* ----------------------------- */ -/* float layout */ /* module, gains superpower "BFC" Block Formating Context */ .mod { overflow: hidden; @@ -252,6 +257,44 @@ table { clear: both; border-collapse: collapse; } +/* simple blocks alignment */ +.left { + margin-right: auto; +} +.right { + margin-left: auto; +} +.center { + margin-left: auto; + margin-right: auto; +} +/* text and contents alignment */ +.txtleft { + text-align: left; +} +.txtright { + text-align: right; +} +.txtcenter { + text-align: center; +} +/* floating elements */ +.fl { + float: left; +} +img.fl { + margin-right: 10px; +} +.fr { + float: right; +} +img.fr { + margin-left: 10px; +} +img.fl, +img.fr { + margin-bottom: 5px; +} /* table layout */ .row { display: table; @@ -263,406 +306,942 @@ table { display: table-cell; vertical-align: top; } +/* no table-cell for script tag when body is a .row */ +body > script { + display: none !important; +} /* inline-block */ .inbl { display: inline-block; vertical-align: top; } -/* alignments (blocks and inline) */ -/* ------------------------------ */ -/* left (or starting) elements */ -.left, -.start { - float: left; +/* flexbox layout +http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html +*/ +.flexbox, +.flexbox-v { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; } -img.left, -img.start { - margin-right: 10px; +.flexbox-h { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; } -/* right (or ending) elements */ -.right, -.end { - float: right; +.flexitem-fluid { + -webkit-box-flex: 1; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; } -img.right, -img.end { - margin-left: 10px; +.flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -img.left, -img.right, -img.start, -img.end { - margin-bottom: 5px; +.flexitem-medium { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; } -.center { - margin-left: auto; - margin-right: auto; -} -.txtleft { - text-align: left; -} -.txtright { - text-align: right; -} -.txtcenter { - text-align: center; +.flexitem-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; } /* ---------------------------------- */ -/* ==visual helpers */ -/* .. use them with parcimony ! */ +/* ==Grids */ /* ---------------------------------- */ -/* blocks widths (percentage and pixels) */ -.w10 { - width: 10%; +/* Examples : will be compiled in CSS */ +.grid-2 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.w20 { - width: 20%; +.grid-2 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ } -.w25 { +.grid-2 > .flexitem-double { + width: 100%; +} +.grid-2 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} +@media (min-width: 769px) and (max-width: 1024px) { + .grid-2 > * { + width: 33.3333%; + } + .grid-2 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-2 > * { + width: 50%; + } + .grid-2 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-2 > * { + width: 100%; + } + .grid-2 > .flexitem-double { + width: 100%; + } +} +.grid-3 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-3 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333333%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-3 > .flexitem-double { + width: 66.66666667%; +} +.grid-3 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} +@media (min-width: 769px) and (max-width: 1024px) { + .grid-3 > * { + width: 33.3333%; + } + .grid-3 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-3 > * { + width: 50%; + } + .grid-3 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-3 > * { + width: 100%; + } + .grid-3 > .flexitem-double { + width: 100%; + } +} +.grid-4 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-4 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; width: 25%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ } -.w30 { - width: 30%; +.grid-4 > .flexitem-double { + width: 50%; } -.w33 { - width: 33.3333%; +.grid-4 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -.w40 { +@media (min-width: 769px) and (max-width: 1024px) { + .grid-4 > * { + width: 33.3333%; + } + .grid-4 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-4 > * { + width: 50%; + } + .grid-4 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-4 > * { + width: 100%; + } + .grid-4 > .flexitem-double { + width: 100%; + } +} +.grid-5 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-5 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-5 > .flexitem-double { width: 40%; } -.w50 { - width: 50%; +.grid-5 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -.w60 { - width: 60%; +@media (min-width: 769px) and (max-width: 1024px) { + .grid-5 > * { + width: 33.3333%; + } + .grid-5 > .flexitem-double { + width: 66.6666%; + } } -.w66 { - width: 66.6666%; +@media (min-width: 481px) and (max-width: 768px) { + .grid-5 > * { + width: 50%; + } + .grid-5 > .flexitem-double { + width: 100%; + } } -.w70 { - width: 70%; +@media (max-width: 480px) { + .grid-5 > * { + width: 100%; + } + .grid-5 > .flexitem-double { + width: 100%; + } } -.w75 { - width: 75%; +.grid-6 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.w80 { - width: 80%; -} -.w90 { - width: 90%; -} -.w100 { - width: 100%; -} -.w50p { - width: 50px; -} -.w100p { - width: 100px; -} -.w150p { - width: 150px; -} -.w200p { - width: 200px; -} -.w300p { - width: 300px; -} -.w400p { - width: 400px; -} -.w500p { - width: 500px; -} -.w600p { - width: 600px; -} -.w700p { - width: 700px; -} -.w800p { - width: 800px; -} -.w960p { - width: 960px; -} -.mw960p { - max-width: 960px; -} -.w1140p { - width: 1140px; -} -.mw1140p { - max-width: 1140px; -} -.wauto { - width: auto; -} -/* spacing helpers -p,m = padding,margin -a,t,r,b,l = all,top,right,bottom,left -s,m,l,n = small, medium, large, none -*/ -.man { - margin: 0; -} -.pan { - padding: 0; -} -.mas { - margin: 10px; -} -.mam { - margin: 20px; -} -.mal { - margin: 40px; -} -.pas { - padding: 10px; -} -.pam { - padding: 20px; -} -.pal { - padding: 40px; -} -.mtn { - margin-top: 0; -} -.mts { - margin-top: 10px; -} -.mtm { - margin-top: 20px; -} -.mtl { - margin-top: 40px; -} -.mrn { - margin-right: 0; -} -.mrs { - margin-right: 10px; -} -.mrm { - margin-right: 20px; -} -.mrl { - margin-right: 40px; -} -.mbn { - margin-bottom: 0; -} -.mbs { - margin-bottom: 10px; -} -.mbm { - margin-bottom: 20px; -} -.mbl { - margin-bottom: 40px; -} -.mln { - margin-left: 0; -} -.mls { - margin-left: 10px; -} -.mlm { - margin-left: 20px; -} -.mll { - margin-left: 40px; -} -.ptn { - padding-top: 0; -} -.pts { - padding-top: 10px; -} -.ptm { - padding-top: 20px; -} -.ptl { - padding-top: 40px; -} -.prn { - padding-right: 0; -} -.prs { - padding-right: 10px; -} -.prm { - padding-right: 20px; -} -.prl { - padding-right: 40px; -} -.pbn { - padding-bottom: 0; -} -.pbs { - padding-bottom: 10px; -} -.pbm { - padding-bottom: 20px; -} -.pbl { - padding-bottom: 40px; -} -.pln { - padding-left: 0; -} -.pls { - padding-left: 10px; -} -.plm { - padding-left: 20px; -} -.pll { - padding-left: 40px; -} -/* ---------------------------------- */ -/* ==classic grids */ -/* .. use it when gutter size matters */ -/* ---------------------------------- */ -/* grids inspired from SUIT https://github.com/suitcss/suit */ -/* overall container of grids */ -.grid { - overflow: hidden; -} -/* global styles for direct child ex. .grid3 */ -.grid > * { +.grid-6 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66666667%; display: block; - padding: 0; - /* gutter value */ - margin-left: -20px; - text-align: left; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ } -/* global styles for each "cell" */ -.grid > * > * { - display: inline-block; - /* gutter value */ - padding-left: 20px; - margin-left: 0; - vertical-align: top; +.grid-6 > .flexitem-double { + width: 33.33333333%; } -/* whitespace fixing for modern browsers including IE9+ */ -:root .grid { - font-size: 0; - /* fallback for IE9+ */ - text-justify: distribute-all-lines; +.grid-6 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -:root .grid > * > * { - /* fallback for Opera Mini */ - font-size: 14px; - font-size: 1.4rem; +@media (min-width: 769px) and (max-width: 1024px) { + .grid-6 > * { + width: 33.3333%; + } + .grid-6 > .flexitem-double { + width: 66.6666%; + } } -/* Opera hack */ -.opera:-o-prefocus, -.grid > * { - word-spacing: -0.43em; +@media (min-width: 481px) and (max-width: 768px) { + .grid-6 > * { + width: 50%; + } + .grid-6 > .flexitem-double { + width: 100%; + } } -.grid2 > * { - width: 50%; +@media (max-width: 480px) { + .grid-6 > * { + width: 100%; + } + .grid-6 > .flexitem-double { + width: 100%; + } } -.grid3 > * { - width: 33.333%; +.grid-7 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.grid4 > * { +.grid-7 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 14.28571429%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-7 > .flexitem-double { + width: 28.57142857%; +} +.grid-7 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} +@media (min-width: 769px) and (max-width: 1024px) { + .grid-7 > * { + width: 33.3333%; + } + .grid-7 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-7 > * { + width: 50%; + } + .grid-7 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-7 > * { + width: 100%; + } + .grid-7 > .flexitem-double { + width: 100%; + } +} +.grid-8 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-8 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 12.5%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-8 > .flexitem-double { width: 25%; } -.grid5 > * { +.grid-8 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} +@media (min-width: 769px) and (max-width: 1024px) { + .grid-8 > * { + width: 33.3333%; + } + .grid-8 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-8 > * { + width: 50%; + } + .grid-8 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-8 > * { + width: 100%; + } + .grid-8 > .flexitem-double { + width: 100%; + } +} +.grid-10 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-10 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 10%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-10 > .flexitem-double { width: 20%; } -.grid6 > * { - width: 16.667%; +.grid-10 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -.grid8 > * { +@media (min-width: 769px) and (max-width: 1024px) { + .grid-10 > * { + width: 33.3333%; + } + .grid-10 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-10 > * { + width: 50%; + } + .grid-10 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-10 > * { + width: 100%; + } + .grid-10 > .flexitem-double { + width: 100%; + } +} +.grid-12 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-12 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333333%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-12 > .flexitem-double { + width: 16.66666667%; +} +.grid-12 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} +@media (min-width: 769px) and (max-width: 1024px) { + .grid-12 > * { + width: 33.3333%; + } + .grid-12 > .flexitem-double { + width: 66.6666%; + } +} +@media (min-width: 481px) and (max-width: 768px) { + .grid-12 > * { + width: 50%; + } + .grid-12 > .flexitem-double { + width: 100%; + } +} +@media (max-width: 480px) { + .grid-12 > * { + width: 100%; + } + .grid-12 > .flexitem-double { + width: 100%; + } +} +.grid-16 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-16 > * { + /* grid child can be any element */ + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 6.25%; + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-16 > .flexitem-double { width: 12.5%; } -.grid10 > * { - width: 10%; +.grid-16 > .flexitem-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } -.grid12 > * { - width: 8.333%; +@media (min-width: 769px) and (max-width: 1024px) { + .grid-16 > * { + width: 33.3333%; + } + .grid-16 > .flexitem-double { + width: 66.6666%; + } } -/* unequal grids (1-2, 2-1, 1-3 and 3-1) for 2 blocks */ -.grid2-1 > *:first-child, -.grid1-2 > * + * { - width: 66.666%; +@media (min-width: 481px) and (max-width: 768px) { + .grid-16 > * { + width: 50%; + } + .grid-16 > .flexitem-double { + width: 100%; + } } -.grid1-2 > *:first-child, -.grid2-1 > * + * { - width: 33.333%; +@media (max-width: 480px) { + .grid-16 > * { + width: 100%; + } + .grid-16 > .flexitem-double { + width: 100%; + } } -.grid1-3 > *:first-child, -.grid3-1 > * + * { - width: 25%; +/* Examples : will be compiled in CSS */ +.grid-2-1 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.grid3-1 > *:first-child, -.grid1-3 > * + * { +.grid-2-1 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-2-1 > *:nth-child(odd) { + width: 66.66666667%; +} +.grid-2-1 > *:nth-child(even) { + width: 33.33333333%; +} +@media (max-width: 480px) { + .grid-2-1 > *:nth-child(n) { + width: 100%; + } +} +.grid-1-2 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-1-2 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-1-2 > *:nth-child(odd) { + width: 33.33333333%; +} +.grid-1-2 > *:nth-child(even) { + width: 66.66666667%; +} +@media (max-width: 480px) { + .grid-1-2 > *:nth-child(n) { + width: 100%; + } +} +.grid-3-1 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-3-1 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-3-1 > *:nth-child(odd) { width: 75%; } -/* ---------------------------------- */ -/* ==autogrids */ -/* .. to automatically justify blocs */ -/* ---------------------------------- */ -/* Demo : http://codepen.io/raphaelgoetter/pen/Kqehf */ -/* container of autogrids */ -[class*="autogrid"] { - text-align: justify; +.grid-3-1 > *:nth-child(even) { + width: 25%; } -[class*="autogrid"]:after { - content: ""; - display: inline-block; - width: 100%; +@media (max-width: 480px) { + .grid-3-1 > *:nth-child(n) { + width: 100%; + } } -[class*="autogrid"] > * { - display: inline-block; - vertical-align: top; - text-align: left; +.grid-1-3 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -/* whitespace fixing for modern browsers including IE9+ */ -:root [class*="autogrid"] { - font-size: 0; - /* fallback for IE9+ */ - text-justify: distribute-all-lines; +.grid-1-3 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ } -:root [class*="autogrid"] > * { - /* fallback for Opera Mini */ - font-size: 14px; - font-size: 1.4rem; +.grid-1-3 > *:nth-child(odd) { + width: 25%; } -/* Opera hack */ -[class*="autogrid"]:-o-prefocus { - word-spacing: -0.43em; +.grid-1-3 > *:nth-child(even) { + width: 75%; } -.autogrid2 > * { - width: 49%; +@media (max-width: 480px) { + .grid-1-3 > *:nth-child(n) { + width: 100%; + } } -.autogrid3 > * { - width: 32%; +.grid-3-2 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.autogrid4 > * { - width: 23.6%; +.grid-3-2 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ } -.autogrid5 > * { - width: 19%; +.grid-3-2 > *:nth-child(odd) { + width: 60%; } -.autogrid6 > * { - width: 15%; +.grid-3-2 > *:nth-child(even) { + width: 40%; } -.autogrid8 > * { - width: 10.8%; +@media (max-width: 480px) { + .grid-3-2 > *:nth-child(n) { + width: 100%; + } } -.autogrid10 > * { - width: 9%; +.grid-2-3 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; } -.autogrid12 > * { - width: 6.4%; +.grid-2-3 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-2-3 > *:nth-child(odd) { + width: 40%; +} +.grid-2-3 > *:nth-child(even) { + width: 60%; +} +@media (max-width: 480px) { + .grid-2-3 > *:nth-child(n) { + width: 100%; + } +} +.grid-4-1 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-4-1 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-4-1 > *:nth-child(odd) { + width: 80%; +} +.grid-4-1 > *:nth-child(even) { + width: 20%; +} +@media (max-width: 480px) { + .grid-4-1 > *:nth-child(n) { + width: 100%; + } +} +.grid-1-4 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -1em; +} +.grid-1-4 > * { + display: block; + /* IE fix */ + border-left: 1em solid transparent; + background-clip: padding-box !important; + /* no background on border */ +} +.grid-1-4 > *:nth-child(odd) { + width: 20%; +} +.grid-1-4 > *:nth-child(even) { + width: 80%; +} +@media (max-width: 480px) { + .grid-1-4 > *:nth-child(n) { + width: 100%; + } } /* ----------------------------- */ /* ==tables */ @@ -772,188 +1351,232 @@ input[type='submit']::-moz-focus-inner { border: 0; padding: 0; } -/* ----------------------------- */ -/* ==icons and bullets */ -/* ----------------------------- */ -.icon { - display: inline-block; +/* ---------------------------------- */ +/* ==visual helpers */ +/* .. use them with parcimony ! */ +/* ---------------------------------- */ +/* blocks widths (percentage and pixels) */ +.w10 { + width: 10%; } -.icon:before, -.icon.after:after { - content: ""; - display: inline-block; - vertical-align: middle; - position: relative; - top: -0.1em; - margin: 0 0.3em 0 0; - font: 1.4em/1 sans-serif; - color: #000; - text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1); - speak: none; +.w20 { + width: 20%; } -@media (min-device-width: 768px) { - .icon:before, - .icon.after:after { - font: 1em/0.6 sans-serif; - -webkit-transform: rotateZ(0.05deg); - } +.w25 { + width: 25%; } -.icon.after:after { - margin: 0 0 0 8px; +.w30 { + width: 30%; } -.icon.after:before { - content: "" !important; +.w33 { + width: 33.3333%; } -.icon-rate:before, -.icon-rate.after:after { - content: "\2605"; +.w40 { + width: 40%; } -.icon-unrate:before, -.icon-unrate.after:after { - content: "\2606"; +.w50 { + width: 50%; } -.icon-check:before, -.icon-check.after:after { - content: "\2713"; +.w60 { + width: 60%; } -.icon-uncheck:before, -.icon-uncheck.after:after { - content: "\2717"; +.w66 { + width: 66.6666%; } -.icon-cloud:before, -.icon-cloud.after:after { - content: "\2601"; +.w70 { + width: 70%; } -.icon-dl:before, -.icon-dl.after:after { - content: "\21E3"; - font-weight: bold; +.w75 { + width: 75%; } -.icon-cross:before, -.icon-cross.after:after { - content: "\2716"; - font-weight: bold; +.w80 { + width: 80%; } -.icon-arrow1:before, -.icon-arrow1.after:after { - content: "\2192"; - position: relative; - top: -0.15em; +.w90 { + width: 90%; } -.icon-arrow2:before, -.icon-arrow2.after:after { - content: "\279E"; +.w100 { + width: 100%; } -.icon-arrow3:before, -.icon-arrow3.after:after { - content: "\279A"; +.w50p { + width: 50px; } -.icon-bracket1:before, -.icon-bracket1.after:after { - content: "\2039"; - font-weight: bold; - font-size: 1.6em; - position: relative; - top: -0.15em; +.w100p { + width: 100px; } -.icon-bracket2:before, -.icon-bracket2.after:after { - content: "\203A"; - font-weight: bold; - font-size: 1.6em; - position: relative; - top: -0.15em; +.w150p { + width: 150px; } -.icon-up:before, -.icon-up.after:after { - content: "\25B2"; +.w200p { + width: 200px; } -.icon-down:before, -.icon-down.after:after { - content: "\25BC"; +.w300p { + width: 300px; } -.icon-bull:before, -.icon-bull.after:after { - content: "\2022"; - font-size: 1.2em; - top: -0.05em; +.w400p { + width: 400px; } -.icon-bull2:before, -.icon-bull2.after:after { - content: "\25E6"; - top: -0.05em; +.w500p { + width: 500px; } -.icon-bull3:before, -.icon-bull3.after:after { - content: "\2023"; - font-size: 1.6em; - top: -0.05em; +.w600p { + width: 600px; } -.icon-nav:before, -.icon-nav.after:after { - content: "\2261"; - font-weight: bold; +.w700p { + width: 700px; } -.icon-losange:before, -.icon-losange.after:after { - content: "\25C6"; +.w800p { + width: 800px; } -.icon-asteri:before, -.icon-asteri.after:after { - content: "\2731"; - font-weight: bold; +.w960p { + width: 960px; } -.icon-mail:before, -.icon-mail.after:after { - content: "\2709"; - font-size: 1.6em; - top: -0.05em; +.mw960p { + max-width: 960px; } -/* flexbox layout -Tutorial: http://knacss.com/demos/tutoriel.html#flex */ -.flex { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; +.w1140p { + width: 1140px; } -.flex-h { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; +.mw1140p { + max-width: 1140px; } -.flex-v { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; +.wauto { + width: auto; } -.flex-fluid { - -webkit-box-flex: 1; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; +/* spacing helpers +p,m = padding,margin +a,t,r,b,l = all,top,right,bottom,left +s,m,l,n = small, medium, large, none +*/ +.man, +.ma0 { + margin: 0; } -.flex-start { - -webkit-box-ordinal-group: 0; - -webkit-order: -1; - -ms-flex-order: -1; - order: -1; +.pan, +.pa0 { + padding: 0; } -.flex-mid { - -webkit-box-ordinal-group: 2; - -webkit-order: 1; - -ms-flex-order: 1; - order: 1; +.mas { + margin: 10px; } -.flex-end { - -webkit-box-ordinal-group: 43; - -webkit-order: 42; - -ms-flex-order: 42; - order: 42; +.mam { + margin: 20px; +} +.mal { + margin: 40px; +} +.pas { + padding: 10px; +} +.pam { + padding: 20px; +} +.pal { + padding: 40px; +} +.mtn, +.mt0 { + margin-top: 0; +} +.mts { + margin-top: 10px; +} +.mtm { + margin-top: 20px; +} +.mtl { + margin-top: 40px; +} +.mrn, +.mr0 { + margin-right: 0; +} +.mrs { + margin-right: 10px; +} +.mrm { + margin-right: 20px; +} +.mrl { + margin-right: 40px; +} +.mbn, +.mb0 { + margin-bottom: 0; +} +.mbs { + margin-bottom: 10px; +} +.mbm { + margin-bottom: 20px; +} +.mbl { + margin-bottom: 40px; +} +.mln, +.ml0 { + margin-left: 0; +} +.mls { + margin-left: 10px; +} +.mlm { + margin-left: 20px; +} +.mll { + margin-left: 40px; +} +.ptn, +.pt0 { + padding-top: 0; +} +.pts { + padding-top: 10px; +} +.ptm { + padding-top: 20px; +} +.ptl { + padding-top: 40px; +} +.prn, +.pr0 { + padding-right: 0; +} +.prs { + padding-right: 10px; +} +.prm { + padding-right: 20px; +} +.prl { + padding-right: 40px; +} +.pbn, +.pb0 { + padding-bottom: 0; +} +.pbs { + padding-bottom: 10px; +} +.pbm { + padding-bottom: 20px; +} +.pbl { + padding-bottom: 40px; +} +.pln, +.pl0 { + padding-left: 0; +} +.pls { + padding-left: 10px; +} +.plm { + padding-left: 20px; +} +.pll { + padding-left: 40px; } /* ----------------------------- */ /* ==desktop and HD devices */ @@ -1022,22 +1645,6 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ .large-man { margin: 0 !important; } - /* grid rwd for large screens */ - .grid5 > *, - .grid6 > *, - .grid8 > *, - .grid10 > *, - .grid12 > * { - width: 33.333%; - } - /* autogrid rwd for large screens */ - .autogrid5 > *, - .autogrid6 > *, - .autogrid8 > *, - .autogrid10 > *, - .autogrid12 > * { - width: 32%; - } } /* ---------------------------------- */ /* ==Responsive medium */ @@ -1094,7 +1701,8 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ border: 0; } /* margins for medium screens */ - .medium-man { + .medium-man, + .medium-ma0 { margin: 0 !important; } } @@ -1174,10 +1782,12 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ border: 0; } /* margins for small screens */ - .small-man { + .small-man, + .small-ma0 { margin: 0 !important; } - .small-pan { + .small-pan, + .small-pa0 { padding: 0 !important; } /* grid rwd for small screens */ @@ -1273,10 +1883,12 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ border: 0; } /* margins for tiny screens */ - .tiny-man { + .tiny-man, + .tiny-ma0 { margin: 0 !important; } - .tiny-pan { + .tiny-pan, + .tiny-pa0 { padding: 0 !important; } /* grid rwd for tiny screens */ @@ -1292,7 +1904,6 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ @media print { * { background: transparent !important; - -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } @@ -1305,12 +1916,19 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ color: #333 !important; } p, + .p-like, h1, + .h1-like, h2, + .h2-like, h3, + .h3-like, h4, + .h4-like, h5, + .h5-like, h6, + .h6-like, blockquote, ul, ol { @@ -1325,10 +1943,11 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ } img { -webkit-filter: grayscale(100%); - filter: grayscale(100%); + filter: grayscale(100%); } /* no orphans, no widows */ p, + .p-like, blockquote { orphans: 3; widows: 3; @@ -1340,13 +1959,17 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ page-break-inside: avoid; } /* page break before main headers */ - h1 { + h1, + .h1-like { page-break-before: always; } /* no breaks after these elements */ h1, + .h1-like, h2, + .h2-like, h3, + .h3-like, caption { page-break-after: avoid; } @@ -1364,7 +1987,7 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ } } /* ----------------------------- */ -/* ==skip-hyphens */ +/* ==misc rules */ /* ----------------------------- */ /* styling skip links */ .skip-links { @@ -1396,14 +2019,11 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ samp { word-wrap: break-word; -webkit-hyphens: auto; - -moz-hyphens: auto; - -ms-hyphens: auto; - hyphens: auto; + -moz-hyphens: auto; + -ms-hyphens: auto; + hyphens: auto; } } -/* ----------------------------- */ -/* ==gmaps support */ -/* ----------------------------- */ /* Google Gmap3 bug fix on images */ .gm-style img { height: 100%; @@ -1417,93 +2037,6 @@ Tutorial: http://knacss.com/demos/tutoriel.html#flex */ max-width: none !important; } /* ----------------------------- */ -/* ==IE6, IE7, IE8 support */ -/* ----------------------------- */ -/* Active box-sizing for IE6/IE7 */ -/* @source https://github.com/Schepp/box-sizing-polyfill */ -.ie67 * { - behavior: url(/js/boxsizing.htc); -} -.ie678 h1, -.ie678 .h1-like { - font-size: 2.29em; -} -.ie678 h2, -.ie678 .h2-like { - font-size: 2em; -} -.ie678 h3, -.ie678 .h3-like { - font-size: 1.71em; -} -.ie678 h4, -.ie678 .h4-like { - font-size: 1.43em; -} -.ie678 h5, -.ie678 .h5-like { - font-size: 1.29em; -} -.ie678 h6, -.ie678 .h6-like { - font-size: 1.14em; -} -/* @bugfix for IE8 */ -.ie678 img { - width: auto; -} -.ie678 .gm-style img { - height: 100%; -} -/* hasLayout for IE6/IE7 */ -.clearfix, -.line, -.mod, -.row, -.col { - *zoom: 1; -} -/*! inline-block and table-cell for IE6/IE7 */ -/*! warning: .col needs width on IE6/IE7 */ -.btn, -.col, -.inbl { - *display: inline; - *zoom: 1; -} -/* old syntax of clip for IE6/IE7 */ -.visually-hidden { - *clip: rect(1px 1px 1px 1px); -} -/* IE8 grid hack */ -.ie8 .grid > *, -.ie8 [class*="autogrid"] > * { - letter-spacing: -0.31em; - text-rendering: optimizespeed; -} -.ie8 .grid > * > *, -.ie8 [class*="autogrid"] > * > * { - letter-spacing: normal; - word-spacing: normal; - text-rendering: auto; -} -/* IE7 grid hack */ -.grid > * > *, -[class*="autogrid"] > * > * { - *display: inline; - *zoom: 1; -} -/* forms */ -/* Corrects excess space around these inputs in IE8/9 */ -.ie678 input[type="checkbox"], -.ie678 input[type="radio"] { - padding: 0; -} -/* Removes default vertical scrollbar on empty textarea in IE6/7/8/9 */ -.ie678 textarea { - overflow: auto; -} -/* ----------------------------- */ /* ==minor stylings */ /* ----------------------------- */ /* styling elements */ @@ -1586,40 +2119,199 @@ hr { background-color: #ccc; } /* alternate tables */ -.alternate { +.table-alternate { border: 0; } -.alternate tbody { +.table-alternate tbody { border: 1px solid #ccc; } -.alternate thead tr > * + * { +.table-alternate thead tr > * + * { border-left: 0; } -.alternate tbody tr > * + * { +.table-alternate tbody tr > * + * { border-left: 1px solid #ccc; } /* alternate-vert tables */ -.alternate-vert { +.table-alternate-v { border: 0; border-right: 1px solid #ccc; } -.alternate-vert tr > :first-child { +.table-alternate-v tr > :first-child { border-bottom: 0; } -.alternate-vert tr > * + * { +.table-alternate-v tr > * + * { border-top: 1px solid #ccc; } /* striped tables */ -.striped tbody tr:nth-child(odd) { +.table-striped tbody tr:nth-child(odd) { background: #eee; background: rgba(0, 0, 0, 0.05); } /* striped-vert tables */ -.striped-vert tr > :first-child { +.table-striped-v tr > :first-child { background: #eee; background: rgba(0, 0, 0, 0.05); } /* ----------------------------- */ +/* ==WordPress reset */ +/* ----------------------------- */ +/* +Author: Geoffrey Crofte, Alsacréations +Contributors: Automattic, Geoffrey Crofte +Description: Reset styles for WordPress usage of KNACSS +*/ +/* ----------------------------- */ +/* ==Menus */ +/* ----------------------------- */ +.comment-navigation, +.paging-navigation, +.post-navigation { + margin: 0 0 1.5em; + overflow: hidden; +} +.comment-navigation .nav-previous, +.paging-navigation .nav-previous, +.post-navigation .nav-previous { + float: left; + width: 50%; +} +.comment-navigation .nav-next, +.paging-navigation .nav-next, +.post-navigation .nav-next { + float: right; + text-align: right; + width: 50%; +} +/* ----------------------------- */ +/* ==Alignments */ +/* ----------------------------- */ +.alignnone { + margin: .25em 1.5em 1.5em 0; +} +.aligncenter { + clear: both; + display: block; + margin: 1.5em auto; +} +.alignleft { + float: left; + margin: 0 1.5em .25em 0; +} +.alignright { + float: right; + margin: 0 0 .25em 1.5em; +} +/* ----------------------------- */ +/* ==Clearings */ +/* ----------------------------- */ +.entry-content, +.comment-content { + clear: both; +} +.entry-content:after, +.comment-content:after, +.entry-content:before, +.comment-content:before { + content: ""; + display: table; +} +/* ----------------------------- */ +/* ==Widgets */ +/* ----------------------------- */ +.widget + .widget { + margin: 1.5em 0 0; +} +.widget select { + max-width: 100%; +} +/* ----------------------------- */ +/* ==Posts and pages */ +/* ----------------------------- */ +/* === 5.1 Posts - post_class === */ +/* === 5.2 Pages - body_class === */ +/* === 5.3 Posts and Pages - Contents === */ +.hentry { + margin: 0 0 1.5em; +} +.page-content, +.entry-content, +.entry-summary { + margin: 1.5em 0 0; +} +.page-links { + clear: both; + margin: 0 0 1.5em; +} +/* ----------------------------- */ +/* ==Comments */ +/* ----------------------------- */ +.comment-content a { + word-wrap: break-word; +} +/* ----------------------------- */ +/* ==Media */ +/* ----------------------------- */ +img.wp-smiley { + margin-bottom: 0; + margin-top: 0; + padding: 0; + border: none; +} +/* ----------------------------- */ +/* ==Captions */ +/* ----------------------------- */ +.wp-caption { + max-width: 100%; + margin-bottom: 1.5em; +} +.wp-caption img { + display: block; + margin: 0 auto; +} +.wp-caption-text { + margin: 1em 0; + text-align: center; +} +/* ----------------------------- */ +/* ==Galleries */ +/* ----------------------------- */ +.gallery { + margin-bottom: 1.5em; +} +.gallery-item { + display: inline-block; + width: 100%; + text-align: center; + vertical-align: top; +} +.gallery-columns-2 .gallery-item { + max-width: 50%; +} +.gallery-columns-3 .gallery-item { + max-width: 33.33%; +} +.gallery-columns-4 .gallery-item { + max-width: 25%; +} +.gallery-columns-5 .gallery-item { + max-width: 20%; +} +.gallery-columns-6 .gallery-item { + max-width: 16.66%; +} +.gallery-columns-7 .gallery-item { + max-width: 14.28%; +} +.gallery-columns-8 .gallery-item { + max-width: 12.5%; +} +.gallery-columns-9 .gallery-item { + max-width: 11.11%; +} +.gallery-caption { + display: block; +} +/* ----------------------------- */ /* ==own stylesheet */ /* ----------------------------- */ /* Here should go your own CSS styles */ diff --git a/css/knacss.css b/css/knacss.css index 70c9028..a513000 100644 --- a/css/knacss.css +++ b/css/knacss.css @@ -1,4 +1,4 @@ /*! -* www.KNACSS.com V3.1.0 (2014-10-20) @author: Raphael Goetter, Alsacreations +* www.KNACSS.com V4.0.0 BETA (2015-03-05) @author: Raphael Goetter, Alsacreations * Licence WTFPL http://www.wtfpl.net/ -*/*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{margin:0;padding:0}ul,ol{padding-left:2em}ul.unstyled{list-style:none}img{height:auto;vertical-align:middle;border:0}blockquote,figure{margin-left:0;margin-right:0}audio,canvas,video{display:inline-block}svg:not(:root){overflow:hidden}html{font-size:62.5%;font-size:-webkit-calc(.625em);font-size:calc(.625em);-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{font-size:1.4em;background-color:#fff;color:#000;font-family:Helvetica,Arial,sans-serif;line-height:1.5}a{color:#333}a:hover,a:focus,a:active{color:#000}p,.p-like,ul,ol,dl,blockquote,pre,td,th,label,textarea,caption,details,figure{margin-top:0.75em;margin-bottom:0;line-height:1.5}h1,.h1-like{font-size:3.2rem;font-family:Helvetica,Arial,sans-serif}h2,.h2-like{font-size:2.8rem;font-family:Helvetica,Arial,sans-serif}h3,.h3-like{font-size:2.4rem}h4,.h4-like{font-size:2rem}h5,.h5-like{font-size:1.8rem}h6,.h6-like{font-size:1.6rem}.smaller{font-size:.71em}.small{font-size:.86em}.big{font-size:1.14em}.bigger{font-size:1.29em}.biggest{font-size:1.43em}code,pre,samp,kbd{white-space:pre-line;white-space:pre-wrap;font-family:Consolas,'DejaVu Sans Mono',Courier,monospace;line-height:normal}em,.italic,address,cite,dfn,i,var{font-style:italic}strong,.bold{font-weight:bold}small,sub,sup{font-size:smaller}.visually-hidden{position:absolute !important;border:0 !important;height:1px !important;width:1px !important;padding:0 !important;overflow:hidden !important;clip:rect(1px, 1px, 1px, 1px) !important}body>script{display:none !important}@media (max-width:768px){.no-small-screen{display:none}}@media (min-width:1280px){.no-large-screen{display:none}}p:first-child,.p-like:first-child,ul:first-child,ol:first-child,dl:first-child,blockquote:first-child,pre:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}li p,li .p-like,li ul,li ol{margin-top:0;margin-bottom:0}img,table,td,blockquote,code,pre,textarea,input,video{max-width:100%}table{margin-bottom:20px}.mod{overflow:hidden}.clear,.line,.row{clear:both}.clearfix:after,.line:after{content:"";display:table;clear:both;border-collapse:collapse}.row{display:table;table-layout:fixed;width:100%}.row>*,.col{display:table-cell;vertical-align:top}.inbl{display:inline-block;vertical-align:top}.left,.start{float:left}img.left,img.start{margin-right:10px}.right,.end{float:right}img.right,img.end{margin-left:10px}img.left,img.right,img.start,img.end{margin-bottom:5px}.center{margin-left:auto;margin-right:auto}.txtleft{text-align:left}.txtright{text-align:right}.txtcenter{text-align:center}.w10{width:10%}.w20{width:20%}.w25{width:25%}.w30{width:30%}.w33{width:33.3333%}.w40{width:40%}.w50{width:50%}.w60{width:60%}.w66{width:66.6666%}.w70{width:70%}.w75{width:75%}.w80{width:80%}.w90{width:90%}.w100{width:100%}.w50p{width:50px}.w100p{width:100px}.w150p{width:150px}.w200p{width:200px}.w300p{width:300px}.w400p{width:400px}.w500p{width:500px}.w600p{width:600px}.w700p{width:700px}.w800p{width:800px}.w960p{width:960px}.mw960p{max-width:960px}.w1140p{width:1140px}.mw1140p{max-width:1140px}.wauto{width:auto}.man{margin:0}.pan{padding:0}.mas{margin:10px}.mam{margin:20px}.mal{margin:40px}.pas{padding:10px}.pam{padding:20px}.pal{padding:40px}.mtn{margin-top:0}.mts{margin-top:10px}.mtm{margin-top:20px}.mtl{margin-top:40px}.mrn{margin-right:0}.mrs{margin-right:10px}.mrm{margin-right:20px}.mrl{margin-right:40px}.mbn{margin-bottom:0}.mbs{margin-bottom:10px}.mbm{margin-bottom:20px}.mbl{margin-bottom:40px}.mln{margin-left:0}.mls{margin-left:10px}.mlm{margin-left:20px}.mll{margin-left:40px}.ptn{padding-top:0}.pts{padding-top:10px}.ptm{padding-top:20px}.ptl{padding-top:40px}.prn{padding-right:0}.prs{padding-right:10px}.prm{padding-right:20px}.prl{padding-right:40px}.pbn{padding-bottom:0}.pbs{padding-bottom:10px}.pbm{padding-bottom:20px}.pbl{padding-bottom:40px}.pln{padding-left:0}.pls{padding-left:10px}.plm{padding-left:20px}.pll{padding-left:40px}.grid{overflow:hidden}.grid>*{display:block;padding:0;margin-left:-20px;text-align:left}.grid>*>*{display:inline-block;padding-left:20px;margin-left:0;vertical-align:top}:root .grid{font-size:0;text-justify:distribute-all-lines}:root .grid>*>*{font-size:14px;font-size:1.4rem}.opera:-o-prefocus,.grid>*{word-spacing:-0.43em}.grid2>*{width:50%}.grid3>*{width:33.333%}.grid4>*{width:25%}.grid5>*{width:20%}.grid6>*{width:16.667%}.grid8>*{width:12.5%}.grid10>*{width:10%}.grid12>*{width:8.333%}.grid2-1>*:first-child,.grid1-2>*+*{width:66.666%}.grid1-2>*:first-child,.grid2-1>*+*{width:33.333%}.grid1-3>*:first-child,.grid3-1>*+*{width:25%}.grid3-1>*:first-child,.grid1-3>*+*{width:75%}[class*="autogrid"]{text-align:justify}[class*="autogrid"]:after{content:"";display:inline-block;width:100%}[class*="autogrid"]>*{display:inline-block;vertical-align:top;text-align:left}:root [class*="autogrid"]{font-size:0;text-justify:distribute-all-lines}:root [class*="autogrid"]>*{font-size:14px;font-size:1.4rem}[class*="autogrid"]:-o-prefocus{word-spacing:-0.43em}.autogrid2>*{width:49%}.autogrid3>*{width:32%}.autogrid4>*{width:23.6%}.autogrid5>*{width:19%}.autogrid6>*{width:15%}.autogrid8>*{width:10.8%}.autogrid10>*{width:9%}.autogrid12>*{width:6.4%}table,.table{width:100%;max-width:100%;table-layout:fixed;border-collapse:collapse;vertical-align:top;border:1px solid #ccc}.table{display:table}table#recaptcha_table,table.table-auto{table-layout:auto}caption{padding:10px;color:#555;font-style:italic}td,th{padding:0.3em 0.8em;border:1px #aaa dotted;vertical-align:top;min-width:20px;cursor:default;text-align:left}.btn{display:inline-block}form,fieldset{border:none}input,button,select,label,.btn{vertical-align:middle;font-family:inherit;font-size:inherit}label{display:inline-block;vertical-align:middle;cursor:pointer}legend{border:0;white-space:normal}textarea{min-height:5em;vertical-align:top;font-family:inherit;font-size:inherit;resize:vertical}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-results-button,input[type="search"]::-webkit-search-results-decoration{display:none}::-webkit-input-placeholder{color:#777}input:-moz-placeholder,textarea:-moz-placeholder{color:#777}button::-moz-focus-inner,input[type='button']::-moz-focus-inner,input[type='reset']::-moz-focus-inner,input[type='submit']::-moz-focus-inner{border:0;padding:0}.icon{display:inline-block}.icon:before,.icon.after:after{content:"";display:inline-block;vertical-align:middle;position:relative;top:-0.1em;margin:0 0.3em 0 0;font:1.4em/1 sans-serif;color:#000;text-shadow:1px 1px 0 rgba(0,0,0,0.1);speak:none}@media (min-device-width:768px){.icon:before,.icon.after:after{font:1em/.6 sans-serif;-webkit-transform:rotateZ(.05deg)}}.icon.after:after{margin:0 0 0 8px}.icon.after:before{content:"" !important}.icon-rate:before,.icon-rate.after:after{content:"\2605"}.icon-unrate:before,.icon-unrate.after:after{content:"\2606"}.icon-check:before,.icon-check.after:after{content:"\2713"}.icon-uncheck:before,.icon-uncheck.after:after{content:"\2717"}.icon-cloud:before,.icon-cloud.after:after{content:"\2601"}.icon-dl:before,.icon-dl.after:after{content:"\21E3";font-weight:bold}.icon-cross:before,.icon-cross.after:after{content:"\2716";font-weight:bold}.icon-arrow1:before,.icon-arrow1.after:after{content:"\2192";position:relative;top:-0.15em}.icon-arrow2:before,.icon-arrow2.after:after{content:"\279E"}.icon-arrow3:before,.icon-arrow3.after:after{content:"\279A"}.icon-bracket1:before,.icon-bracket1.after:after{content:"\2039";font-weight:bold;font-size:1.6em;position:relative;top:-0.15em}.icon-bracket2:before,.icon-bracket2.after:after{content:"\203A";font-weight:bold;font-size:1.6em;position:relative;top:-0.15em}.icon-up:before,.icon-up.after:after{content:"\25B2"}.icon-down:before,.icon-down.after:after{content:"\25BC"}.icon-bull:before,.icon-bull.after:after{content:"\2022";font-size:1.2em;top:-0.05em}.icon-bull2:before,.icon-bull2.after:after{content:"\25E6";top:-0.05em}.icon-bull3:before,.icon-bull3.after:after{content:"\2023";font-size:1.6em;top:-0.05em}.icon-nav:before,.icon-nav.after:after{content:"\2261";font-weight:bold}.icon-losange:before,.icon-losange.after:after{content:"\25C6"}.icon-asteri:before,.icon-asteri.after:after{content:"\2731";font-weight:bold}.icon-mail:before,.icon-mail.after:after{content:"\2709";font-size:1.6em;top:-0.05em}.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flex-h{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.flex-v{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flex-fluid{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flex-start{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-mid{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-end{-webkit-box-ordinal-group:43;-webkit-order:42;-ms-flex-order:42;order:42}@media (min-width:1025px){.large-hidden{display:none !important}.large-visible{display:block !important}.large-no-float{float:none}.large-inbl{display:inline-block;float:none;vertical-align:top}.large-row{display:table;table-layout:fixed;width:100% !important}.large-col{display:table-cell;vertical-align:top}.large-w25{width:25% !important}.large-w33{width:33.3333% !important}.large-w50{width:50% !important}.large-w66{width:66.6666% !important}.large-w75{width:75% !important}.large-w100,.large-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.large-man{margin:0 !important}.grid5>*,.grid6>*,.grid8>*,.grid10>*,.grid12>*{width:33.333%}.autogrid5>*,.autogrid6>*,.autogrid8>*,.autogrid10>*,.autogrid12>*{width:32%}}@media (min-width:769px) and (max-width:1024px){.medium-hidden{display:none !important}.medium-visible{display:block !important}.medium-no-float{float:none}.medium-inbl{display:inline-block;float:none;vertical-align:top}.medium-row{display:table;table-layout:fixed;width:100% !important}.medium-col{display:table-cell;vertical-align:top}.medium-w25{width:25% !important}.medium-w33{width:33.3333% !important}.medium-w50{width:50% !important}.medium-w66{width:66.6666% !important}.medium-w75{width:75% !important}.medium-w100,.medium-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.medium-man{margin:0 !important}}@media (min-width:481px) and (max-width:768px){.mod,.col,fieldset{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.w600p,.w700p,.w800p,.w960p,.mw960p{width:auto;float:none}.small-hidden{display:none !important}.small-visible{display:block !important}.small-no-float{float:none}.small-inbl{display:inline-block;float:none;vertical-align:top}.small-row{display:table !important;table-layout:fixed !important;width:100% !important}.small-col{display:table-cell !important;vertical-align:top !important}.small-w25{width:25% !important}.small-w33{width:33.3333% !important}.small-w50{width:50% !important}.small-w66{width:66.6666% !important}.small-w75{width:75% !important}.small-w100,.small-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.small-man{margin:0 !important}.small-pan{padding:0 !important}.grid3>*,.grid4>*,.grid5>*,.grid6>*,.grid8>*,.grid10>*,.grid12>*{width:50%}.autogrid5>*,.autogrid6>*,.autogrid8>*,.autogrid10>*,.autogrid12>*{width:49% !important}}@media (max-width:480px){.w300p,.w400p,.w500p{width:auto;float:none}.row{display:block !important;width:100% !important}.tiny-hidden{display:none !important}.tiny-visible{display:block !important}.tiny-no-float{float:none}.tiny-inbl{display:inline-block;float:none;vertical-align:top}.tiny-row{display:table !important;table-layout:fixed !important;width:100% !important}.tiny-col{display:table-cell !important;vertical-align:top !important}th,td{display:block !important;width:auto !important;text-align:left !important}thead{display:none}.tiny-w25{width:25% !important}.tiny-w33{width:33.3333% !important}.tiny-w50{width:50% !important}.tiny-w66{width:66.6666% !important}.tiny-w75{width:75% !important}.tiny-w100,.tiny-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.tiny-man{margin:0 !important}.tiny-pan{padding:0 !important}.grid>*>*{width:100% !important}[class*="autogrid"]>*{width:100% !important}}@media print{*{background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}body{width:auto !important;margin:auto !important;font-family:serif;font-size:12pt;background-color:#fff !important;color:#333 !important}p,h1,h2,h3,h4,h5,h6,blockquote,ul,ol{color:#000 !important;margin:auto !important}.print{display:block}.no-print{display:none}img{-webkit-filter:grayscale(100%);filter:grayscale(100%)}p,blockquote{orphans:3;widows:3}blockquote,ul,ol{page-break-inside:avoid}h1{page-break-before:always}h1,h2,h3,caption{page-break-after:avoid}a{color:#000 !important;text-decoration:underline !important}a[href]:after{content:" (" attr(href) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}}.skip-links{position:absolute}.skip-links a{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);padding:0.5em;background:black;color:white;text-decoration:none}.skip-links a:focus{position:static;overflow:visible;clip:auto}@media (max-width:768px){div,textarea,table,td,th,code,pre,samp{word-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}}.gm-style img{height:100%}:not(.gm-style) img{height:auto}.gm-style img,.gmnoscreen img,.gmnoprint img{max-width:none !important}.ie67 *{behavior:url(/js/boxsizing.htc)}.ie678 h1,.ie678 .h1-like{font-size:2.29em}.ie678 h2,.ie678 .h2-like{font-size:2em}.ie678 h3,.ie678 .h3-like{font-size:1.71em}.ie678 h4,.ie678 .h4-like{font-size:1.43em}.ie678 h5,.ie678 .h5-like{font-size:1.29em}.ie678 h6,.ie678 .h6-like{font-size:1.14em}.ie678 img{width:auto}.ie678 .gm-style img{height:100%}.clearfix,.line,.mod,.row,.col{*zoom:1}/*! inline-block and table-cell for IE6/IE7 *//*! warning: .col needs width on IE6/IE7 */.btn,.col,.inbl{*display:inline;*zoom:1}.visually-hidden{*clip:rect(1px 1px 1px 1px)}.ie8 .grid>*,.ie8 [class*="autogrid"]>*{letter-spacing:-0.31em;text-rendering:optimizespeed}.ie8 .grid>*>*,.ie8 [class*="autogrid"]>*>*{letter-spacing:normal;word-spacing:normal;text-rendering:auto}.grid>*>*,[class*="autogrid"]>*>*{*display:inline;*zoom:1}.ie678 input[type="checkbox"],.ie678 input[type="radio"]{padding:0}.ie678 textarea{overflow:auto}code,kbd,mark{border-radius:2px}kbd{padding:0 2px;border:1px solid #999}code{padding:2px 4px;background:rgba(0,0,0,0.04);color:#b11}pre code{padding:none;background:none;color:inherit;border-radius:0}mark{padding:2px 4px;background:#ff0}sup,sub{vertical-align:0;position:relative}sup{bottom:1ex}sub{top:0.5ex}blockquote{position:relative;padding-left:3em}blockquote:before{content:"\201C";position:absolute;left:0;top:0;font-family:georgia, serif;font-size:5em;line-height:0.9;color:rgba(0,0,0,0.3)}blockquote>footer{margin-top:.75em;font-size:0.9em;color:rgba(0,0,0,0.7)}blockquote>footer:before{content:"\2014 \0020"}q{font-style:normal}q,.q{quotes:"“\00a0" "\00a0”"}q:lang(fr),.q:lang(fr){quotes:"«\00a0" "\00a0»"}hr{display:block;clear:both;height:1px;margin:1em 0 2em;padding:0;border:0;color:#ccc;background-color:#ccc}.alternate{border:0}.alternate tbody{border:1px solid #ccc}.alternate thead tr>*+*{border-left:0}.alternate tbody tr>*+*{border-left:1px solid #ccc}.alternate-vert{border:0;border-right:1px solid #ccc}.alternate-vert tr>:first-child{border-bottom:0}.alternate-vert tr>*+*{border-top:1px solid #ccc}.striped tbody tr:nth-child(odd){background:#eee;background:rgba(0,0,0,0.05)}.striped-vert tr>:first-child{background:#eee;background:rgba(0,0,0,0.05)} \ No newline at end of file +*/html{box-sizing:border-box}*{box-sizing:inherit}html,body{margin:0;padding:0}ul,ol{padding-left:2em}ul.unstyled{list-style:none}img{vertical-align:middle;border:0}img:not([src$=".svg"]){height:auto}blockquote,figure{margin-left:0;margin-right:0}audio,canvas,video{display:inline-block}svg:not(:root){overflow:hidden}html{font-size:62.5%;font-size:calc(.625em);-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{font-size:1.4em;background-color:#fff;color:#000;font-family:Helvetica,Arial,sans-serif;line-height:1.5}a{color:#333}a:hover,a:focus,a:active{color:#000}p,.p-like,ul,ol,dl,blockquote,pre,td,th,label,textarea,caption,details,figure{margin-top:0.75em;margin-bottom:0;line-height:1.5}h1,.h1-like{font-size:3.2rem;font-family:Helvetica,Arial,sans-serif}h2,.h2-like{font-size:2.8rem;font-family:Helvetica,Arial,sans-serif}h3,.h3-like{font-size:2.4rem}h4,.h4-like{font-size:2rem}h5,.h5-like{font-size:1.8rem}h6,.h6-like{font-size:1.6rem}.smaller{font-size:0.6em}.small{font-size:0.8em}.big{font-size:1.2em}.bigger{font-size:1.5em}.biggest{font-size:2em}code,pre,samp,kbd{white-space:pre-line;white-space:pre-wrap;font-family:Consolas,"DejaVu Sans Mono",Courier,monospace;line-height:normal}em,.italic,address,cite,dfn,i,var{font-style:italic}strong,.bold{font-weight:bold}small,sub,sup{font-size:smaller}.visually-hidden{position:absolute !important;border:0 !important;height:1px !important;width:1px !important;padding:0 !important;overflow:hidden !important;clip:rect(1px, 1px, 1px, 1px) !important}@media (max-width:768px){.no-small-screen{display:none}}@media (min-width:1280px){.no-large-screen{display:none}}p:first-child,.p-like:first-child,ul:first-child,ol:first-child,dl:first-child,blockquote:first-child,pre:first-child,h1:first-child,.h1-like:first-child,h2:first-child,.h2-like:first-child,h3:first-child,.h3-like:first-child,h4:first-child,.h4-like:first-child,h5:first-child,.h5-like:first-child,h6:first-child,.h6-like:first-child{margin-top:0}li p,li .p-like,li ul,li ol{margin-top:0;margin-bottom:0}img,table,td,blockquote,code,pre,textarea,input,video{max-width:100%}table{margin-bottom:20px}.mod{overflow:hidden}.clear,.line,.row{clear:both}.clearfix:after,.line:after{content:"";display:table;clear:both;border-collapse:collapse}.left{margin-right:auto}.right{margin-left:auto}.center{margin-left:auto;margin-right:auto}.txtleft{text-align:left}.txtright{text-align:right}.txtcenter{text-align:center}.fl{float:left}img.fl{margin-right:10px}.fr{float:right}img.fr{margin-left:10px}img.fl,img.fr{margin-bottom:5px}.row{display:table;table-layout:fixed;width:100%}.row>*,.col{display:table-cell;vertical-align:top}body>script{display:none !important}.inbl{display:inline-block;vertical-align:top}.flexbox,.flexbox-v{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flexbox-h{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.flexitem-fluid{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flexitem-medium{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flexitem-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.grid-2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-2>.flexitem-double{width:100%}.grid-2>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-2>*{width:33.3333%}.grid-2>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-2>*{width:50%}.grid-2>.flexitem-double{width:100%}}@media (max-width:480px){.grid-2>*{width:100%}.grid-2>.flexitem-double{width:100%}}.grid-3{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-3>.flexitem-double{width:66.66666667%}.grid-3>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-3>*{width:33.3333%}.grid-3>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-3>*{width:50%}.grid-3>.flexitem-double{width:100%}}@media (max-width:480px){.grid-3>*{width:100%}.grid-3>.flexitem-double{width:100%}}.grid-4{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-4>.flexitem-double{width:50%}.grid-4>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-4>*{width:33.3333%}.grid-4>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-4>*{width:50%}.grid-4>.flexitem-double{width:100%}}@media (max-width:480px){.grid-4>*{width:100%}.grid-4>.flexitem-double{width:100%}}.grid-5{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-5>.flexitem-double{width:40%}.grid-5>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-5>*{width:33.3333%}.grid-5>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-5>*{width:50%}.grid-5>.flexitem-double{width:100%}}@media (max-width:480px){.grid-5>*{width:100%}.grid-5>.flexitem-double{width:100%}}.grid-6{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-6>.flexitem-double{width:33.33333333%}.grid-6>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-6>*{width:33.3333%}.grid-6>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-6>*{width:50%}.grid-6>.flexitem-double{width:100%}}@media (max-width:480px){.grid-6>*{width:100%}.grid-6>.flexitem-double{width:100%}}.grid-7{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-7>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:14.28571429%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-7>.flexitem-double{width:28.57142857%}.grid-7>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-7>*{width:33.3333%}.grid-7>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-7>*{width:50%}.grid-7>.flexitem-double{width:100%}}@media (max-width:480px){.grid-7>*{width:100%}.grid-7>.flexitem-double{width:100%}}.grid-8{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-8>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:12.5%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-8>.flexitem-double{width:25%}.grid-8>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-8>*{width:33.3333%}.grid-8>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-8>*{width:50%}.grid-8>.flexitem-double{width:100%}}@media (max-width:480px){.grid-8>*{width:100%}.grid-8>.flexitem-double{width:100%}}.grid-10{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-10>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:10%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-10>.flexitem-double{width:20%}.grid-10>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-10>*{width:33.3333%}.grid-10>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-10>*{width:50%}.grid-10>.flexitem-double{width:100%}}@media (max-width:480px){.grid-10>*{width:100%}.grid-10>.flexitem-double{width:100%}}.grid-12{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-12>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-12>.flexitem-double{width:16.66666667%}.grid-12>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-12>*{width:33.3333%}.grid-12>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-12>*{width:50%}.grid-12>.flexitem-double{width:100%}}@media (max-width:480px){.grid-12>*{width:100%}.grid-12>.flexitem-double{width:100%}}.grid-16{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-16>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:6.25%;display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-16>.flexitem-double{width:12.5%}.grid-16>.flexitem-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}@media (min-width:769px) and (max-width:1024px){.grid-16>*{width:33.3333%}.grid-16>.flexitem-double{width:66.6666%}}@media (min-width:481px) and (max-width:768px){.grid-16>*{width:50%}.grid-16>.flexitem-double{width:100%}}@media (max-width:480px){.grid-16>*{width:100%}.grid-16>.flexitem-double{width:100%}}.grid-2-1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-2-1>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-2-1>*:nth-child(odd){width:66.66666667%}.grid-2-1>*:nth-child(even){width:33.33333333%}@media (max-width:480px){.grid-2-1>*:nth-child(n){width:100%}}.grid-1-2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-1-2>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-1-2>*:nth-child(odd){width:33.33333333%}.grid-1-2>*:nth-child(even){width:66.66666667%}@media (max-width:480px){.grid-1-2>*:nth-child(n){width:100%}}.grid-3-1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-3-1>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-3-1>*:nth-child(odd){width:75%}.grid-3-1>*:nth-child(even){width:25%}@media (max-width:480px){.grid-3-1>*:nth-child(n){width:100%}}.grid-1-3{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-1-3>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-1-3>*:nth-child(odd){width:25%}.grid-1-3>*:nth-child(even){width:75%}@media (max-width:480px){.grid-1-3>*:nth-child(n){width:100%}}.grid-3-2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-3-2>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-3-2>*:nth-child(odd){width:60%}.grid-3-2>*:nth-child(even){width:40%}@media (max-width:480px){.grid-3-2>*:nth-child(n){width:100%}}.grid-2-3{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-2-3>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-2-3>*:nth-child(odd){width:40%}.grid-2-3>*:nth-child(even){width:60%}@media (max-width:480px){.grid-2-3>*:nth-child(n){width:100%}}.grid-4-1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-4-1>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-4-1>*:nth-child(odd){width:80%}.grid-4-1>*:nth-child(even){width:20%}@media (max-width:480px){.grid-4-1>*:nth-child(n){width:100%}}.grid-1-4{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1em}.grid-1-4>*{display:block;border-left:1em solid transparent;background-clip:padding-box !important}.grid-1-4>*:nth-child(odd){width:20%}.grid-1-4>*:nth-child(even){width:80%}@media (max-width:480px){.grid-1-4>*:nth-child(n){width:100%}}table,.table{width:100%;max-width:100%;table-layout:fixed;border-collapse:collapse;vertical-align:top;border:1px solid #ccc}.table{display:table}table#recaptcha_table,table.table-auto{table-layout:auto}caption{padding:10px;color:#555;font-style:italic}td,th{padding:0.3em 0.8em;border:1px #aaa dotted;vertical-align:top;min-width:20px;cursor:default;text-align:left}.btn{display:inline-block}form,fieldset{border:none}input,button,select,label,.btn{vertical-align:middle;font-family:inherit;font-size:inherit}label{display:inline-block;vertical-align:middle;cursor:pointer}legend{border:0;white-space:normal}textarea{min-height:5em;vertical-align:top;font-family:inherit;font-size:inherit;resize:vertical}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-results-button,input[type="search"]::-webkit-search-results-decoration{display:none}::-webkit-input-placeholder{color:#777}input:-moz-placeholder,textarea:-moz-placeholder{color:#777}button::-moz-focus-inner,input[type='button']::-moz-focus-inner,input[type='reset']::-moz-focus-inner,input[type='submit']::-moz-focus-inner{border:0;padding:0}.w10{width:10%}.w20{width:20%}.w25{width:25%}.w30{width:30%}.w33{width:33.3333%}.w40{width:40%}.w50{width:50%}.w60{width:60%}.w66{width:66.6666%}.w70{width:70%}.w75{width:75%}.w80{width:80%}.w90{width:90%}.w100{width:100%}.w50p{width:50px}.w100p{width:100px}.w150p{width:150px}.w200p{width:200px}.w300p{width:300px}.w400p{width:400px}.w500p{width:500px}.w600p{width:600px}.w700p{width:700px}.w800p{width:800px}.w960p{width:960px}.mw960p{max-width:960px}.w1140p{width:1140px}.mw1140p{max-width:1140px}.wauto{width:auto}.man,.ma0{margin:0}.pan,.pa0{padding:0}.mas{margin:10px}.mam{margin:20px}.mal{margin:40px}.pas{padding:10px}.pam{padding:20px}.pal{padding:40px}.mtn,.mt0{margin-top:0}.mts{margin-top:10px}.mtm{margin-top:20px}.mtl{margin-top:40px}.mrn,.mr0{margin-right:0}.mrs{margin-right:10px}.mrm{margin-right:20px}.mrl{margin-right:40px}.mbn,.mb0{margin-bottom:0}.mbs{margin-bottom:10px}.mbm{margin-bottom:20px}.mbl{margin-bottom:40px}.mln,.ml0{margin-left:0}.mls{margin-left:10px}.mlm{margin-left:20px}.mll{margin-left:40px}.ptn,.pt0{padding-top:0}.pts{padding-top:10px}.ptm{padding-top:20px}.ptl{padding-top:40px}.prn,.pr0{padding-right:0}.prs{padding-right:10px}.prm{padding-right:20px}.prl{padding-right:40px}.pbn,.pb0{padding-bottom:0}.pbs{padding-bottom:10px}.pbm{padding-bottom:20px}.pbl{padding-bottom:40px}.pln,.pl0{padding-left:0}.pls{padding-left:10px}.plm{padding-left:20px}.pll{padding-left:40px}@media (min-width:1025px){.large-hidden{display:none !important}.large-visible{display:block !important}.large-no-float{float:none}.large-inbl{display:inline-block;float:none;vertical-align:top}.large-row{display:table;table-layout:fixed;width:100% !important}.large-col{display:table-cell;vertical-align:top}.large-w25{width:25% !important}.large-w33{width:33.3333% !important}.large-w50{width:50% !important}.large-w66{width:66.6666% !important}.large-w75{width:75% !important}.large-w100,.large-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.large-man{margin:0 !important}}@media (min-width:769px) and (max-width:1024px){.medium-hidden{display:none !important}.medium-visible{display:block !important}.medium-no-float{float:none}.medium-inbl{display:inline-block;float:none;vertical-align:top}.medium-row{display:table;table-layout:fixed;width:100% !important}.medium-col{display:table-cell;vertical-align:top}.medium-w25{width:25% !important}.medium-w33{width:33.3333% !important}.medium-w50{width:50% !important}.medium-w66{width:66.6666% !important}.medium-w75{width:75% !important}.medium-w100,.medium-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.medium-man,.medium-ma0{margin:0 !important}}@media (min-width:481px) and (max-width:768px){.mod,.col,fieldset{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.w600p,.w700p,.w800p,.w960p,.mw960p{width:auto;float:none}.small-hidden{display:none !important}.small-visible{display:block !important}.small-no-float{float:none}.small-inbl{display:inline-block;float:none;vertical-align:top}.small-row{display:table !important;table-layout:fixed !important;width:100% !important}.small-col{display:table-cell !important;vertical-align:top !important}.small-w25{width:25% !important}.small-w33{width:33.3333% !important}.small-w50{width:50% !important}.small-w66{width:66.6666% !important}.small-w75{width:75% !important}.small-w100,.small-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.small-man,.small-ma0{margin:0 !important}.small-pan,.small-pa0{padding:0 !important}.grid3>*,.grid4>*,.grid5>*,.grid6>*,.grid8>*,.grid10>*,.grid12>*{width:50%}.autogrid5>*,.autogrid6>*,.autogrid8>*,.autogrid10>*,.autogrid12>*{width:49% !important}}@media (max-width:480px){.w300p,.w400p,.w500p{width:auto;float:none}.row{display:block !important;width:100% !important}.tiny-hidden{display:none !important}.tiny-visible{display:block !important}.tiny-no-float{float:none}.tiny-inbl{display:inline-block;float:none;vertical-align:top}.tiny-row{display:table !important;table-layout:fixed !important;width:100% !important}.tiny-col{display:table-cell !important;vertical-align:top !important}th,td{display:block !important;width:auto !important;text-align:left !important}thead{display:none}.tiny-w25{width:25% !important}.tiny-w33{width:33.3333% !important}.tiny-w50{width:50% !important}.tiny-w66{width:66.6666% !important}.tiny-w75{width:75% !important}.tiny-w100,.tiny-wauto{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-left:0 !important;margin-right:0 !important;border:0}.tiny-man,.tiny-ma0{margin:0 !important}.tiny-pan,.tiny-pa0{padding:0 !important}.grid>*>*{width:100% !important}[class*="autogrid"]>*{width:100% !important}}@media print{*{background:transparent !important;box-shadow:none !important;text-shadow:none !important}body{width:auto !important;margin:auto !important;font-family:serif;font-size:12pt;background-color:#fff !important;color:#333 !important}p,.p-like,h1,.h1-like,h2,.h2-like,h3,.h3-like,h4,.h4-like,h5,.h5-like,h6,.h6-like,blockquote,ul,ol{color:#000 !important;margin:auto !important}.print{display:block}.no-print{display:none}img{-webkit-filter:grayscale(100%);filter:grayscale(100%)}p,.p-like,blockquote{orphans:3;widows:3}blockquote,ul,ol{page-break-inside:avoid}h1,.h1-like{page-break-before:always}h1,.h1-like,h2,.h2-like,h3,.h3-like,caption{page-break-after:avoid}a{color:#000 !important;text-decoration:underline !important}a[href]:after{content:" (" attr(href) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}}.skip-links{position:absolute}.skip-links a{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);padding:0.5em;background:black;color:white;text-decoration:none}.skip-links a:focus{position:static;overflow:visible;clip:auto}@media (max-width:768px){div,textarea,table,td,th,code,pre,samp{word-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}}.gm-style img{height:100%}:not(.gm-style) img{height:auto}.gm-style img,.gmnoscreen img,.gmnoprint img{max-width:none !important}code,kbd,mark{border-radius:2px}kbd{padding:0 2px;border:1px solid #999}code{padding:2px 4px;background:rgba(0,0,0,0.04);color:#b11}pre code{padding:none;background:none;color:inherit;border-radius:0}mark{padding:2px 4px;background:#ff0}sup,sub{vertical-align:0;position:relative}sup{bottom:1ex}sub{top:0.5ex}blockquote{position:relative;padding-left:3em}blockquote:before{content:"\201C";position:absolute;left:0;top:0;font-family:georgia, serif;font-size:5em;line-height:0.9;color:rgba(0,0,0,0.3)}blockquote>footer{margin-top:.75em;font-size:0.9em;color:rgba(0,0,0,0.7)}blockquote>footer:before{content:"\2014 \0020"}q{font-style:normal}q,.q{quotes:"“\00a0" "\00a0”"}q:lang(fr),.q:lang(fr){quotes:"«\00a0" "\00a0»"}hr{display:block;clear:both;height:1px;margin:1em 0 2em;padding:0;border:0;color:#ccc;background-color:#ccc}.table-alternate{border:0}.table-alternate tbody{border:1px solid #ccc}.table-alternate thead tr>*+*{border-left:0}.table-alternate tbody tr>*+*{border-left:1px solid #ccc}.table-alternate-v{border:0;border-right:1px solid #ccc}.table-alternate-v tr>:first-child{border-bottom:0}.table-alternate-v tr>*+*{border-top:1px solid #ccc}.table-striped tbody tr:nth-child(odd){background:#eee;background:rgba(0,0,0,0.05)}.table-striped-v tr>:first-child{background:#eee;background:rgba(0,0,0,0.05)}.comment-navigation,.paging-navigation,.post-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-previous,.paging-navigation .nav-previous,.post-navigation .nav-previous{float:left;width:50%}.comment-navigation .nav-next,.paging-navigation .nav-next,.post-navigation .nav-next{float:right;text-align:right;width:50%}.alignnone{margin:.25em 1.5em 1.5em 0}.aligncenter{clear:both;display:block;margin:1.5em auto}.alignleft{float:left;margin:0 1.5em .25em 0}.alignright{float:right;margin:0 0 .25em 1.5em}.entry-content,.comment-content{clear:both}.entry-content:after,.comment-content:after,.entry-content:before,.comment-content:before{content:"";display:table}.widget+.widget{margin:1.5em 0 0}.widget select{max-width:100%}.hentry{margin:0 0 1.5em}.page-content,.entry-content,.entry-summary{margin:1.5em 0 0}.page-links{clear:both;margin:0 0 1.5em}.comment-content a{word-wrap:break-word}img.wp-smiley{margin-bottom:0;margin-top:0;padding:0;border:none}.wp-caption{max-width:100%;margin-bottom:1.5em}.wp-caption img{display:block;margin:0 auto}.wp-caption-text{margin:1em 0;text-align:center}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;width:100%;text-align:center;vertical-align:top}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block} \ No newline at end of file diff --git a/less/_00-config.less b/less/_00-config.less index faec7fe..4212929 100644 --- a/less/_00-config.less +++ b/less/_00-config.less @@ -1,3 +1,8 @@ +/*! +* www.KNACSS.com V4.0.0 BETA (2015-03-05) @author: Raphael Goetter, Alsacreations +* Licence WTFPL http://www.wtfpl.net/ +*/ + // Config file and project variables // font sizes diff --git a/less/_01-base.less b/less/_01-base.less index 5410fdd..804ac7e 100644 --- a/less/_01-base.less +++ b/less/_01-base.less @@ -1,8 +1,3 @@ -/*! -* www.KNACSS.com V3.1.0 (2014-10-20) @author: Raphael Goetter, Alsacreations -* Licence WTFPL http://www.wtfpl.net/ -*/ - /* ----------------------------- */ /* == soft reset */ /* ----------------------------- */ diff --git a/less/_11-wordpress.less b/less/_11-wordpress.less index 0fc3ec7..429837c 100644 --- a/less/_11-wordpress.less +++ b/less/_11-wordpress.less @@ -1,3 +1,7 @@ +/* ----------------------------- */ +/* ==WordPress reset */ +/* ----------------------------- */ + /* Author: Geoffrey Crofte, Alsacréations Contributors: Automattic, Geoffrey Crofte diff --git a/sass/_00-config.scss b/sass/_00-config.scss index 0bb9cf8..833984f 100644 --- a/sass/_00-config.scss +++ b/sass/_00-config.scss @@ -1,3 +1,8 @@ +/*! +* www.KNACSS.com V4.0.0 BETA (2015-03-05) @author: Raphael Goetter, Alsacreations +* Licence WTFPL http://www.wtfpl.net/ +*/ + // Config file and project variables // font sizes diff --git a/sass/_01-base.scss b/sass/_01-base.scss index 2bfd08b..d768bf9 100644 --- a/sass/_01-base.scss +++ b/sass/_01-base.scss @@ -1,8 +1,3 @@ -/*! -* www.KNACSS.com V3.1.0 (2014-10-20) @author: Raphael Goetter, Alsacreations (with help from Hugo Giraudel) -* Licence WTFPL http://www.wtfpl.net/ -*/ - /* ----------------------------- */ /* == soft reset */ /* ----------------------------- */ diff --git a/sass/_11-wordpress.scss b/sass/_11-wordpress.scss index 0fc3ec7..429837c 100644 --- a/sass/_11-wordpress.scss +++ b/sass/_11-wordpress.scss @@ -1,3 +1,7 @@ +/* ----------------------------- */ +/* ==WordPress reset */ +/* ----------------------------- */ + /* Author: Geoffrey Crofte, Alsacréations Contributors: Automattic, Geoffrey Crofte