-
Notifications
You must be signed in to change notification settings - Fork 3
/
timer.scss
68 lines (57 loc) · 1.26 KB
/
timer.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
65
66
67
68
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #47bbb3;
$value-color: #fff;
$error-color: red;
$title-color: rgba(255, 255, 255, 0.7);
$moreinfo-color: rgba(255, 255, 255, 0.7);
// ----------------------------------------------------------------------------
// Widget-number styles
// ----------------------------------------------------------------------------
.widget-timer {
background-color: $background-color;
.sparkline-label
{
font-size:.6em;
}
.sparkline
{
vertical-align: baseline;
}
.title {
color: $title-color;
}
.error {
background-color: $error-color;
color: white;
padding:1em;
border-radius: 25px;
display:none;
.highlighted
{
background-color: #444444;
padding:0 4px 0 4px;
}
a
{
text-decoration: underline;
}
}
.value {
color: $value-color;
font-size:2.5em;
text-transform: lowercase;
}
.change-rate {
font-weight: 500;
font-size: 30px;
color: $value-color;
}
.more-info {
color: $moreinfo-color;
}
.updated-at {
color: rgba(0, 0, 0, 0.3);
}
}