summaryrefslogtreecommitdiff
path: root/templates/project/widgets/text/text.scss
blob: 591c32e2cca92670b1f0b453dfa1b8b044ac462b (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
// ----------------------------------------------------------------------------
$widget-text_background-color:  #ec663c;
$widget-text_value-color:       #fff;

$widget-text_title-color:       lighten($widget-text_background-color, 30%);
$widget-text_moreinfo-color:    lighten($widget-text_background-color, 30%);

// ----------------------------------------------------------------------------
// Widget-text styles
// ----------------------------------------------------------------------------
.widget-text { 

  background-color: $widget-text_background-color;
  
  .title { 
    color: $widget-text_title-color;
  }

  .text-moreinfo {
    color: $widget-text_moreinfo-color;
  }
  
}