1
0
Fork 0
freesewing/packages/css-theme/src/_mixins.scss
Joost De Cock 796dc1d7ec 🚧 Work on CSS
2019-05-25 11:12:06 +02:00

14 lines
637 B
SCSS

@mixin xs-screen {
@media (max-width: 599px) { @content; }
}
@mixin sm-screen {
@media (min-width: 600px) and (max-width: 959px) { @content; }
}
@mixin lg-screen {
@media (min-width: 960px) { @content; }
}
@mixin body-font { font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
@mixin title-font { font-family: 'Roboto Condensed', sans-serif; }
@mixin fixed-font { font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; }
@mixin scribble-font { font-family: 'Permanent Marker', cursive; }