2014-02-03 16:33:44 +01:00
|
|
|
@mixin media($size) {
|
|
|
|
@media screen and (max-width: $size) { @content; }
|
2014-01-30 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@function calculate-rem($size) {
|
2014-02-03 16:33:44 +01:00
|
|
|
$remSize: $size / $base-font-size;
|
2014-01-30 12:20:51 +01:00
|
|
|
@return #{$remSize}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin font-size($size) {
|
2014-02-03 16:33:44 +01:00
|
|
|
font-size: $size + px;
|
2014-01-30 12:20:51 +01:00
|
|
|
font-size: calculate-rem($size);
|
|
|
|
}
|