PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.0
Easy Elements for Elementor – Addons & Website Templates v1.5.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / progress / css / progress.scss

progress.scss in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/progress/css/progress.scss

66 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .rt-progress-bar {
2 .progress-top {
3 display: flex;
4 align-items: center;
5 justify-content: space-between;
6 .title {
7 color: var(--e-global-color-primary);
8 font-weight: 500;
9 margin-bottom: 15px;
10 }
11 .percent {
12 color: var(--e-global-color-primary);
13 font-weight: 500;
14 }
15 }
16 .progress {
17 height: 8px;
18 background: #f2f2f2;
19 overflow: hidden;
20 .progress-bar {
21 width: 0%;
22 height: 100%;
23 background: var(--e-global-color-primary);
24 transition: width 1.5s ease;
25
26 }
27 }
28 }
29
30
31 // style 2
32 .progress-style2 {
33 position: relative;
34 .title {
35 position: absolute;
36 margin: 0;
37 top: 50%;
38 transform: translateY(-50%);
39 left: 30px;
40 font-size: 16px;
41 text-transform: uppercase;
42 font-weight: 700;
43 line-height: 1;
44 color: var(--e-global-color-secondary);
45 }
46 .progress {
47 height: 40px;
48 background: linear-gradient(90deg, #20282d29 0%, #f2f2f205 100%);
49 opacity: 1;
50 border-radius: 40px;
51 background-color: transparent;
52 span {
53 position: absolute;
54 right: 25px;
55 top: 50%;
56 transform: translateY(-50%);
57 font-size: 16px;
58 color: var(--e-global-color-secondary);
59 font-weight: 700;
60 }
61 .progress-bar {
62 background-color: transparent;
63 }
64 }
65 }
66