blob: 42936025ad1f57fb06be78356af013b30c4f008c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #ec663c;;
$value-color: #fff;
$title-color: lighten($background-color, 40%);
$moreinfo-color: lighten($background-color, 30%);
// ----------------------------------------------------------------------------
// Widget-text styles
// ----------------------------------------------------------------------------
.widget-text {
background-color: $background-color;
.title {
color: $title-color;
}
.text-moreinfo {
color: $moreinfo-color;
}
}
|