summaryrefslogtreecommitdiff
path: root/templates/project/widgets/table/table.scss
blob: 0d38164bbbd463d626f9e5f3e66b0d7769417ef0 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$widget-table_background-color: #82b53d;
$widget-table_value-color:      #fff;

$widget-table_title-color:      lighten($widget-table_background-color, 45%);
$widget-table_label-color:      lighten($widget-table_background-color, 45%);

// ----------------------------------------------------------------------------
// Widget-table styles
// ----------------------------------------------------------------------------
.widget-table { 

  background-color: $widget-table_background-color;

  th {
    font-weight: 400;
    font-size: 16px;
  }

  td.label {
    vertical-align: middle;
    text-align: left;
    font-size: 23px;
  }

  .title { 
    color: $widget-table_title-color;
  }

  .label {
    color: $widget-table_label-color;    
  }

  .value {
    font-weight: 700;
    font-size: 54px;
    color: $widget-table_value-color;
  }

}