booleans variables added

This commit is contained in:
Raphael Goetter 2014-04-20 20:34:39 +02:00
parent a20f157800
commit dfbaaca2a5
8 changed files with 394 additions and 350 deletions

View file

@ -141,47 +141,12 @@ kbd {
font-family: Consolas, 'DejaVu Sans Mono', Courier, monospace;
line-height: normal;
}
code,
kbd,
mark {
border-radius: 2px;
}
em {
font-style: italic;
}
strong {
font-weight: bold;
}
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: .5ex;
}
/* ----------------------------- */
/* == hiding content */
/* ----------------------------- */
@ -196,23 +161,6 @@ sub {
width: 1px;
}
/* ----------------------------- */
/* == skip links styling */
/* ----------------------------- */
.skip-links {
position: absolute;
}
.skip-links a {
position: absolute;
left: -7000px;
padding: 0.5em;
background: black;
color: white;
text-decoration: none;
}
.skip-links a:focus {
position: static;
}
/* ----------------------------- */
/* == browsers consistency */
/* ----------------------------- */
/* avoid top margins on first content element */
@ -346,10 +294,6 @@ img.end {
.txtcenter {
text-align: center;
}
/* ----------------------------- */
/* == width helpers */
/* .. use only when needed */
/* ----------------------------- */
/* blocks widths (percentage and pixels) */
.w10 {
width: 10%;
@ -438,16 +382,11 @@ img.end {
.wauto {
width: auto;
}
/* ----------------------------- */
/* == spacing helpers */
/* .. use only when needed */
/* ----------------------------- */
/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small(10px),medium(20px),large(30px),none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small, medium, large, none
*/
.m-reset,
.ma0 {
margin: 0;
@ -609,62 +548,6 @@ source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
padding-left: 4em;
}
/* ----------------------------- */
/* == iefix */
/* ----------------------------- */
/* Make sure you are using Conditional Classes in your HTML */
/* see : http://www.alsacreations.com/astuce/lire/988-classes-conditionnelles-HTML.html */
.ie678 h1,
.ie678 .h1-like {
font-size: 2.28571429em;
}
.ie678 h2,
.ie678 .h2-like {
font-size: 2em;
}
.ie678 h3,
.ie678 .h3-like {
font-size: 1.71428571em;
}
.ie678 h4,
.ie678 .h4-like {
font-size: 1.42857143em;
}
.ie678 h5,
.ie678 .h5-like {
font-size: 1.28571429em;
}
.ie678 h6,
.ie678 .h6-like {
font-size: 1.14285714em;
}
/* hasLayout for IE6/IE7 */
.ie67 .clearfix,
.ie67 .line,
.ie67 .mod,
.ie67 .row,
.ie67 .col {
zoom: 1;
}
/* inline-block and table-cell for IE6/IE7 */
/* warning: .col needs width on IE6/IE7 */
.ie67 .btn,
.ie67 .col,
.ie67 .inbl {
display: inline;
zoom: 1;
}
.ie8 img {
width: auto;
/* @bugfix for IE8 */
}
/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
/*
.ie67 * {
behavior: url(/lib/box-sizing-polyfill/boxsizing.htc);
}
*/
/* ----------------------------- */
/* == quick print reset */
/* ----------------------------- */
@media print {

View file

@ -100,18 +100,6 @@
display: table-cell !important;
vertical-align: top !important;
}
/* you shall not pass */
div,
textarea,
table,
td,
th,
code,
pre,
samp {
word-wrap: break-word;
hyphens: auto;
}
/* widths for small screens */
.small-w25 {
width: 25% !important;

141
css/09-booleans.css Normal file
View file

@ -0,0 +1,141 @@
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: .5ex;
}
blockquote {
margin-left: 0;
padding-left: 1em;
border-left: 4px solid rgba(0, 0, 0, 0.15);
font-style: italic;
}
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;
}
.ie678 h1,
.ie678 .h1-like {
font-size: 2.28571429em;
}
.ie678 h2,
.ie678 .h2-like {
font-size: 2em;
}
.ie678 h3,
.ie678 .h3-like {
font-size: 1.71428571em;
}
.ie678 h4,
.ie678 .h4-like {
font-size: 1.42857143em;
}
.ie678 h5,
.ie678 .h5-like {
font-size: 1.28571429em;
}
.ie678 h6,
.ie678 .h6-like {
font-size: 1.14285714em;
}
.ie678 img {
width: auto;
/* @bugfix for IE8 */
}
/* 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;
}
/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
/*
.ie67 * {
behavior: url(/lib/box-sizing-polyfill/boxsizing.htc);
}
*/
.skip-links {
position: absolute;
}
.skip-links a {
position: absolute;
left: -7000px;
padding: 0.5em;
background: black;
color: white;
text-decoration: none;
}
.skip-links a:focus {
position: static;
}
@media (max-width: 480px) {
/* you shall not pass */
div,
textarea,
table,
td,
th,
code,
pre,
samp {
word-wrap: break-word;
hyphens: auto;
}
}