2015-02-25 10:15:51 -05:00
|
|
|
/*
|
|
|
|
* Background Colors
|
|
|
|
*
|
|
|
|
* Background utility classes to add color to elements
|
|
|
|
*/
|
|
|
|
|
|
|
|
.background-sky {
|
2015-03-05 13:02:21 -05:00
|
|
|
background-color: $ocean;
|
|
|
|
background: linear-gradient($ocean, $regal);
|
2015-02-25 10:15:51 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-26 09:45:32 -05:00
|
|
|
/*
|
|
|
|
* Background Images
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
.background-sf-paper {
|
|
|
|
background: url('/resources/images/backgrounds/sf-paper.png') bottom center no-repeat;
|
|
|
|
background-size: 100%;
|
|
|
|
background-position: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-02-25 10:15:51 -05:00
|
|
|
/*
|
|
|
|
* Text Colors
|
|
|
|
*
|
|
|
|
* Text color utility color classes
|
|
|
|
*/
|
|
|
|
|
|
|
|
.text-snow {
|
|
|
|
color: $snow;
|
|
|
|
}
|