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

41 lines
505 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: linear-gradient(top, $ocean, $regal);
color: $snow;
}
.background-regal {
background: $regal;
color: $snow;
}
.background-coal {
background: $coal;
color: $snow;
}
.background-steel {
background: $steel;
color: $snow;
}
.background-silver {
background: $silver;
color: $snow;
}
/*
* Text Colors
*
* Text color utility color classes
*/
.text-snow {
color: $snow;
}