-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path_charts.scss
More file actions
107 lines (91 loc) · 1.48 KB
/
_charts.scss
File metadata and controls
107 lines (91 loc) · 1.48 KB
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
@use "../../variables" as *;
// Chart & Lines styles.
.cld-chart {
&-stat {
padding-bottom: 2em;
canvas {
max-width: 100%;
max-height: 100%;
}
}
}
.cld-progress {
&-circular {
display: block;
width: 160px;
height: 160px;
margin: 2em .5em 2em 0;
position: relative;
.progressbar-text {
position: absolute;
left: 50%;
top: 50%;
padding: 0;
margin: 0;
width: 100%;
transform: translate(-50%, -50%);
text-align: center;
color: #222222;
font-weight: bolder;
text-transform: capitalize;
font-size: 1em;
h2 {
margin: 0 0 0.15em;
line-height: 1;
font-size: 48px;
}
}
}
&-box {
display: flex;
align-items: center;
justify-content: flex-start;
margin: 0 0 16px;
width: 100%;
&-title {
font-size: 15px;
margin: 12px 0 16px 0;
line-height: 1.4;
}
&-line {
display: block;
width: 0%;
min-width: 1px;
height: 5px;
transition: width 2s;
&-value {
padding: 0 0 0 8px;
font-weight: bold;
width: 100px;
}
}
}
&-line {
display: block;
width: 100%;
height: 3px;
position: relative;
background-color: $color-cld-grey-blue;
}
&-header {
font-weight: bolder;
&-titles {
display: flex;
justify-content: space-between;
font-size: $size-panel-content;
margin-top: 5px;
&-left {
color: $color-cld-blue;
}
&-right {
color: $color-cld-grey-blue;
font-weight: normal;
}
}
}
}
.cld-line {
&-stat {
margin-bottom: 15px;
}
}