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
| .widget {
| &.widget-one {
| padding: 22px 18px;
| background: $m-color_10;
|
| .widget-heading h6 {
| color: $m-color_3;
| margin-bottom: 41px;
| font-size: 17px;
| display: block;
| font-weight: 600;
| }
|
| .w-chart {
| display: flex;
|
| .w-chart-section {
| width: 50%;
| padding: 0 12px;
|
| .w-detail {
| position: absolute;
| color: $white;
| }
|
| .w-title {
| font-size: 13px;
| font-weight: 700;
| margin-bottom: 0;
| }
|
| .w-stats {
| color: $m-color_17;
| font-size: 20px;
| letter-spacing: 1px;
| margin-bottom: 0;
| font-weight: 700;
| }
| }
| }
| }
| }
|
|
|
| /*
| ==================
| Widget
| ==================
| */
|
| .widget-one {
| position: relative;
| background: $primary;
| padding: 0;
| border-radius: 8px;
| height: 100%;
|
| .widget-content {
| font-size: 17px;
| }
|
| .w-numeric-value {
| position: absolute;
| display: flex;
| color: $white;
| font-weight: 500;
| padding: 20px;
|
| .w-icon {
| display: inline-block;
| background: $l-primary;
| padding: 13px 12px;
| border-radius: 50%;
| display: inline-flex;
| align-self: center;
| height: 45px;
| width: 45px;
| margin-right: 14px;
| }
|
| svg {
| display: block;
| color: $primary;
| width: 20px;
| height: 20px;
| }
|
| .w-value {
| font-size: 26px;
| display: block;
| color: $white;
| font-weight: 600;
| margin-bottom: -9px;
| }
|
| .w-numeric-title {
| font-size: 13px;
| color: $white;
| letter-spacing: 1px;
| font-weight: 600;
| }
| }
| }
|
|