KNACSS/sass/_01-base.scss

273 lines
3.5 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 {
2014-05-04 15:48:00 +02:00
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
2014-05-04 15:48:00 +02:00
/* soft reset */
html,
body {
margin: 0;
padding: 0;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
ul,
ol {
padding-left: 2em;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
ul.unstyled {
list-style: none;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
img {
vertical-align: middle;
border: 0;
}
2014-05-07 11:12:14 +02:00
/* height auto only for non SVG images */
img:not([src$=".svg"]) {
height: auto;
}
2014-07-10 16:06:02 +02:00
blockquote,
figure {
margin-left: 0;
margin-right: 0;
}
2014-05-04 15:48:00 +02:00
audio,
canvas,
video {
display: inline-block;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
svg:not(:root) {
overflow: hidden;
}
/* ----------------------------- */
/* == typography */
/* ----------------------------- */
html {
2014-05-19 10:46:39 +02:00
/* set base font-size to equiv "10px", which is adapted to rem unit */
2014-05-04 15:48:00 +02:00
font-size: 62.5%;
2014-05-19 10:46:39 +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-19 10:46:39 +02:00
/* disallow text zooming on orientation change (non standard property) */
2014-05-04 15:48:00 +02:00
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
body {
2014-05-19 10:46:39 +02:00
/* set body font-size in em (1.4em equiv "14px") */
font-size: ($base-font-size / 10px) + em;
2014-07-02 16:12:58 +02:00
background-color: $base-background;
color: $base-color;
2014-05-04 15:48:00 +02:00
font-family: $font-stack-common;
line-height: $line-height;
}
2014-06-30 21:20:07 +02:00
a {
2014-07-02 16:12:58 +02:00
color: $base-color-link;
2014-06-30 21:20:07 +02:00
&:hover, &:focus, &:active {
2014-07-02 16:12:58 +02:00
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,
.p-like,
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea,
caption,
details,
2014-05-07 11:12:14 +02:00
figure {
2014-05-04 15:48:00 +02:00
margin-top: 0.75em;
margin-bottom: 0;
line-height: $line-height;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h1, .h1-like {
font-size: $h1-size;
2014-07-02 16:12:58 +02:00
font-family: $font-stack-headings;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h2, .h2-like {
font-size: $h2-size;
2014-07-02 16:12:58 +02:00
font-family: $font-stack-headings;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h3, .h3-like {
font-size: $h3-size;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h4, .h4-like {
font-size: $h4-size;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h5, .h5-like {
font-size: $h5-size;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
h6, .h6-like {
font-size: $h6-size;
}
/* alternate font-sizing */
.smaller {
font-size: 0.6em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
.small {
font-size: 0.8em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
.big {
font-size: 1.2em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
.bigger {
font-size: 1.5em;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
.biggest {
font-size: 2em;
2014-05-04 15:48:00 +02:00
}
code,
2014-05-04 15:48:00 +02:00
pre,
samp,
kbd {
2014-05-19 10:46:39 +02:00
/* IE fix */
white-space: pre-line;
2014-05-04 15:48:00 +02:00
white-space: pre-wrap;
font-family: $font-stack-monospace;
line-height: normal;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
em,
.italic,
2014-05-04 15:48:00 +02:00
address,
cite,
dfn,
i,
var {
font-style: italic;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
strong,
.bold {
2014-05-04 15:48:00 +02:00
font-weight: bold;
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
small,
sub,
sup {
font-size: smaller;
}
/* ----------------------------- */
/* == hiding content */
/* ----------------------------- */
2014-05-07 11:12:14 +02:00
/* hidden but not for assistance tools, Yahoo! method */
.visually-hidden {
2014-05-07 11:12:14 +02:00
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;
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) {
.no-small-screen {
display: none;
}
}
2014-05-07 11:12:14 +02:00
2014-05-04 15:48:00 +02:00
@media (min-width: $large-screen) {
.no-large-screen {
display: none;
}
}
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,
.p-like,
ul,
ol,
2014-05-07 11:12:14 +02:00
dl,
blockquote,
2014-05-07 11:12:14 +02:00
pre,
h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
2014-05-04 15:48:00 +02:00
&:first-child {
margin-top: 0;
}
}
/* avoid margins on nested elements */
li p,
li .p-like,
li ul,
li ol {
margin-top: 0;
margin-bottom: 0;
}
/* max values */
img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
2014-05-07 11:12:14 +02:00
video {
2014-05-04 15:48:00 +02:00
max-width: 100%;
}
/* margin-bottom on tables */
table {
2014-05-07 11:12:14 +02:00
margin-bottom: $medium-value;
}