-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMMM-Tools.css
112 lines (102 loc) · 1.61 KB
/
MMM-Tools.css
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
*
* MMM-Tools
*
*
* MIT Licensed.
*
* Custom here your css module
*
*/
#MMM-Tools {
display: block;
}
#MMM-Tools.hidden {
display:none;
}
.Tools {
display: flex;
flex-direction: column;
justify-content: flex-start;
font-size:initial;
line-height:1em;
color:#EEE;
}
.Tools .status_item {
display:flex;
flex-direction: row;
/*justify-content: center;*/
height:1.2em;
align-items: center;
}
.Tools .status_item .item_label {
order: 1;
text-align: right;
padding-right:15px;
color:#BDF;
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.Tools .status_item .container {
order: 2;
/*
height:100%;
margin-top:0px;
*/
align-items: center;
justify-content: center;
}
.Tools .status_item .container .value {
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
text-align: right;
}
.Tools .total {
text-align: right;
background-color: #333;
position:relative;
width:100%;
}
.Tools .bar {
text-align: left;
position:absolute;
top : 0;
background-color: #369;
overflow: visible;
height:100%;
}
.Tools .bar.step0 {
background-color: #33C;
}
.Tools .bar.step10 {
background-color: #43B;
}
.Tools .bar.step20 {
background-color: #53A;
}
.Tools .bar.step30 {
background-color: #639;
}
.Tools .bar.step40 {
background-color: #738;
}
.Tools .bar.step50 {
background-color: #837;
}
.Tools .bar.step60 {
background-color: #936;
}
.Tools .bar.step70 {
background-color: #A35;
}
.Tools .bar.step80 {
background-color: #B34;
}
.Tools .bar.step90 {
background-color: #C33;
}
.Tools .bar.step100 {
background-color: #D32;
}