PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.9.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.9.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / assets / build / blocks / progress-tracker / style.css

style.css in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.1, at assets/build/blocks/progress-tracker/style.css

55 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .ablocks-block--progress-tracker .ablocks-block-container {
2 width: 100%;
3 }
4
5 /* bar style */
6 .ablocks-block-progress-bar-track {
7 width: 100%;
8 z-index: 1;
9 display: flex;
10 }
11 .ablocks-block-progress-bar {
12 display: flex;
13 position: relative;
14 align-items: center;
15 overflow-x: hidden;
16 }
17 /* Left and Right Alignments */
18 .ablocks-block-progress-bar-track.ablocks-block-progress-bar-left {
19 justify-content: start;
20 }
21 .ablocks-block-progress-bar-track.ablocks-block-progress-bar-right {
22 justify-content: end;
23 }
24
25 .ablocks-block-progress--fixed {
26 position: fixed;
27 width: 100%;
28 z-index: 10;
29 }
30 .ablocks-block-progress--absolute {
31 position: absolute;
32 width: 100%;
33 }
34
35 .ablocks-block-progress__text {
36 font-size: 16px;
37 position: absolute;
38 }
39 /* circle style*/
40 .ablocks-block-progress-circle__svg {
41 overflow: visible;
42
43 }
44 .ablocks-block-progress-circle {
45 display: flex;
46 justify-content: center;
47 align-items: center;
48 }
49 .ablocks-block-progress-circle__wrapper {
50 position: relative;
51 display: inline-flex;
52 align-items: center;
53 justify-content: center;
54 }
55