KNACSS/sass/_01b-base.scss

240 lines
3.6 KiB
SCSS
Raw Normal View History

2014-05-04 15:48:00 +02:00
/* ----------------------------- */
/* == soft reset */
/* ----------------------------- */
/* switching to border-box model for all elements */
html {
2015-07-01 13:47:48 +02:00
box-sizing: border-box;
2014-05-04 15:48:00 +02:00
}
* {
2015-07-01 13:47:48 +02:00
box-sizing: inherit;
}
2014-05-04 15:48:00 +02:00
ul,
ol {
2015-07-01 13:47:48 +02:00
padding-left: 2em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
ul.#{$kna-namespace}unstyled {
2015-07-01 13:47:48 +02:00
list-style: none;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
img {
2015-07-01 13:47:48 +02:00
vertical-align: middle;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
/* height auto only for non SVG images */
img:not([src$=".svg"]) {
2015-07-01 13:47:48 +02:00
height: auto;
}
2014-07-10 16:06:02 +02:00
blockquote,
figure {
2015-07-01 13:47:48 +02:00
margin-left: 0;
margin-right: 0;
}
2014-05-04 15:48:00 +02:00
/* ----------------------------- */
/* == typography */
/* ----------------------------- */
html {
2015-07-01 13:47:48 +02:00
/* set base font-size to equiv "10px", which is adapted to rem unit */
font-size: 62.5%;
2015-07-01 13:47:48 +02:00
/* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
/* thanks to @guardian, @victorbritopro and @eQRoeil */
font-size: calc(1em * 0.625);
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
body {
2015-07-01 13:47:48 +02:00
/* set body font-size in em (1.4em equiv "14px") */
font-size: ($base-font-size / 10px) + em;
2015-07-01 13:47:48 +02:00
background-color: $base-background;
color: $base-color;
font-family: $font-stack-common;
line-height: $line-height;
2014-05-04 15:48:00 +02:00
}
2014-06-30 21:20:07 +02:00
a {
2015-07-01 13:47:48 +02:00
color: $base-color-link;
&:hover, &:focus, &:active {
color: $base-color-link-hover;
}
2014-06-30 21:20:07 +02:00
}
2014-05-04 15:48:00 +02:00
/* font-sizing for content */
p,
.#{$kna-namespace}p-like,
2014-05-04 15:48:00 +02:00
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea,
caption,
details,
2014-05-07 11:12:14 +02:00
figure {
2015-07-01 13:47:48 +02:00
margin-top: 0.75em;
margin-bottom: 0;
line-height: $line-height;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h1, .#{$kna-namespace}h1-like {
2015-07-01 13:47:48 +02:00
font-size: $h1-size;
font-family: $font-stack-headings;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h2, .#{$kna-namespace}h2-like {
2015-07-01 13:47:48 +02:00
font-size: $h2-size;
font-family: $font-stack-headings;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h3, .#{$kna-namespace}h3-like {
2015-07-01 13:47:48 +02:00
font-size: $h3-size;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h4, .#{$kna-namespace}h4-like {
2015-07-01 13:47:48 +02:00
font-size: $h4-size;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h5, .#{$kna-namespace}h5-like {
2015-07-01 13:47:48 +02:00
font-size: $h5-size;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
h6, .#{$kna-namespace}h6-like {
2015-07-01 13:47:48 +02:00
font-size: $h6-size;
2014-05-04 15:48:00 +02:00
}
/* alternate font-sizing */
.#{$kna-namespace}smaller {
2015-07-01 13:47:48 +02:00
font-size: 0.6em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
.#{$kna-namespace}small {
2015-07-01 13:47:48 +02:00
font-size: 0.8em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
.#{$kna-namespace}big {
2015-07-01 13:47:48 +02:00
font-size: 1.2em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
.#{$kna-namespace}bigger {
2015-07-01 13:47:48 +02:00
font-size: 1.5em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
.#{$kna-namespace}biggest {
2015-07-01 13:47:48 +02:00
font-size: 2em;
2014-05-04 15:48:00 +02:00
}
code,
2014-05-04 15:48:00 +02:00
pre,
samp,
kbd {
2015-07-01 13:47:48 +02:00
/* IE fix */
white-space: pre-line;
white-space: pre-wrap;
font-family: $font-stack-monospace;
line-height: normal;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
em,
.#{$kna-namespace}italic,
2014-05-04 15:48:00 +02:00
address,
cite,
i,
var {
2015-07-01 13:47:48 +02:00
font-style: italic;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
/* ----------------------------- */
/* == hiding content */
/* ----------------------------- */
2014-05-07 11:12:14 +02:00
/* hidden but not for assistance tools, Yahoo! method */
.visually-hidden {
2015-07-01 13:47:48 +02:00
position: absolute !important;
border: 0 !important;
height: 1px !important;
width: 1px !important;
padding: 0 !important;
overflow: hidden !important;
2015-08-27 11:11:40 +02:00
clip: rect(0, 0, 0, 0) !important;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
@media (max-width: $small-screen) {
2015-07-01 13:47:48 +02:00
.#{$kna-namespace}no-small-screen {
display: none;
}
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
@media (min-width: $large-screen) {
2015-07-01 13:47:48 +02:00
.#{$kna-namespace}no-large-screen {
display: none;
}
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
/* ----------------------------- */
/* == browsers consistency */
/* ----------------------------- */
/* avoid top margins on first content element */
p,
.#{$kna-namespace}p-like,
ul,
ol,
2014-05-07 11:12:14 +02:00
dl,
blockquote,
2014-05-07 11:12:14 +02:00
pre,
h1,
.#{$kna-namespace}h1-like,
h2,
.#{$kna-namespace}h2-like,
h3,
.#{$kna-namespace}h3-like,
h4,
.#{$kna-namespace}h4-like,
h5,
.#{$kna-namespace}h5-like,
h6,
.#{$kna-namespace}h6-like {
2015-07-01 13:47:48 +02:00
&:first-child {
margin-top: 0;
}
2014-05-04 15:48:00 +02:00
}
/* avoid margins on nested elements */
li p,
li .#{$kna-namespace}p-like,
2014-05-04 15:48:00 +02:00
li ul,
li ol {
2015-07-01 13:47:48 +02:00
margin-top: 0;
margin-bottom: 0;
2014-05-04 15:48:00 +02:00
}
/* max values */
img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
video,
svg {
2015-07-01 13:47:48 +02:00
max-width: 100%;
2014-05-04 15:48:00 +02:00
}
/* margin-bottom on tables */
table {
2015-07-01 13:47:48 +02:00
margin-bottom: $medium-value;
2014-05-07 11:12:14 +02:00
}