blob: 248cef8eb56f8af1f359bcda3cd864fed5d7e2f7 (
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
43
44
45
46
47
48
49
50
|
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$widget-list_background-color: #12b0c5;
$widget-list_value-color: #fff;
$widget-list_title-color: lighten($widget-list_background-color, 45%);
$widget-list_label-color: lighten($widget-list_background-color, 45%);
// ----------------------------------------------------------------------------
// Widget-list styles
// ----------------------------------------------------------------------------
.widget-list {
background-color: $widget-list_background-color;
.title {
color: $widget-list_title-color;
}
ol, ul {
margin: 0 15px;
text-align: left;
color: $widget-list_label-color;
}
ol {
list-style-position: inside;
}
li {
margin-bottom: 5px;
}
.list-nostyle {
list-style: none;
}
.label {
color: $widget-list_label-color;
}
.value {
float: right;
margin-left: 12px;
font-weight: 600;
color: $widget-list_value-color;
}
}
|