-
Notifications
You must be signed in to change notification settings - Fork 1
/
fancy_list.scss
64 lines (51 loc) · 1.24 KB
/
fancy_list.scss
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #12b0c5;
$value-color: rgba(255, 255, 255, 0.7);
$title-color: rgba(255, 255, 255, 0.7);
$label-color: rgba(255, 255, 255, 1);
$moreinfo-color: rgba(255, 255, 255, 0.7);
// ----------------------------------------------------------------------------
// Widget-schedule styles
// ----------------------------------------------------------------------------
.widget-fancy-list {
background-color: $background-color;
vertical-align: top;
list-style: none;
.title {
color: $title-color;
}
i{
color: $title-color;
}
ul {
text-align: left;
color: $label-color;
}
li {
margin-bottom: 7px;
}
.label {
color: $label-color;
font-size: 22px;
max-width: 50%;
}
.value {
color: $value-color;
max-width: 49%;
max-height: 1px;
color: darken(#ffffff, 10%);
font-size: 14px;
line-height: 17px;
float: right;
padding-top: 8px;
text-align: right;
}
.updated-at {
color: rgba(0, 0, 0, 0.3);
}
.more-info {
color: $moreinfo-color;
}
}