/**
|
|
* core
|
|
*
|
|
*
|
|
* @author Björn Hase, Tentakelfabrik
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
*
|
|
*/
|
|
|
|
@import
|
|
'core/normalize',
|
|
'core/heading',
|
|
'core/typography';
|
|
|
|
@include plain-ui__core__normalize();
|
|
@include plain-ui__core__heading();
|
|
@include plain-ui__core__typography();
|
|
|
|
@mixin plain-ui__core() {
|
|
|
|
a {
|
|
color: $plain-ui__link-light;
|
|
|
|
&:hover {
|
|
color: $plain-ui__link-hover;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* body
|
|
*
|
|
*
|
|
*
|
|
* line-height and breakpoints
|
|
* font-size and breakpoints
|
|
*
|
|
*/
|
|
body {
|
|
font-family: $plain-ui__font-family;
|
|
//color: $plain-ui__text-light;
|
|
background-color: $plain-ui__background-light;
|
|
direction: $plain-ui__direction;
|
|
|
|
font-size: $plain-ui__font-size;
|
|
//@include crispy__media-breakpoints('line-height', $crispy__line-height__breakpoints);
|
|
|
|
line-height: $plain-ui__line-height;
|
|
//@include crispy__media-breakpoints('font-size', $crispy__font-size-breakpoints);
|
|
}
|
|
}
|