angular-cn/public/resources/css/_theme.scss

28 lines
550 B
SCSS
Raw Normal View History

2015-02-25 10:15:51 -05:00
/*
* Background Colors
*
* Background utility classes to add color to elements
*/
.background-sky {
background-color: $blue-700;
background: linear-gradient(145deg, $blue-900, $blue-400);
2015-02-25 10:15:51 -05:00
color: $snow;
}
.background-midnight {
background: $blue-grey-900;
2015-02-25 10:15:51 -05:00
color: $snow;
}
2015-02-26 09:45:32 -05:00
/*
* Background Images
*
*/
.background-superhero-paper {
background: url('/resources/images/backgrounds/super-hero-large.png') no-repeat bottom center , linear-gradient(145deg, $blue-900, $blue-400);
background-blend-mode: multiply;
background-size: 100%;
2015-02-25 10:15:51 -05:00
}