astroport/www/LOVELand/scss/_mixins.scss

14 lines
292 B
SCSS
Raw Permalink Normal View History

2020-04-14 02:26:37 +02:00
// Mixins
// Background Cover Mixin
@mixin background-cover {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
// Font Mixins
@mixin body-font {
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}