styles.scss
965 Bytes
@import "../valo/valo.scss";
$gray: #d1d1cf;
$green: #40b527;
$darkgreen: darken($green, 30%);
// Prefix all selectors in your theme with .demo
.demo {
// Include valo theme styles in your theme
@include valo;
// You can style your demo app right here
.demoContentLayout {
background-color: $gray;
background-image: url(images/radial-gradient.png);
background-size: 90%;
background-position: center center;
background-repeat: no-repeat;
}
// You can also customize your component for the demo
// app, but remember that these styles are not part of
// the component. To include built-in CSS for your component,
// edit client/styles.css under java sources
div.webnotifications {
color: $green;
font-size: 50pt;
font-weight: bold;
text-shadow: 0px 3px 0px $darkgreen,
0px 14px 10px rgba(0,0,0,0.15),
0px 24px 2px rgba(0,0,0,0.1),
0px 34px 30px rgba(0,0,0,0.1);
text-align: center;
}
}