PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / milestone / style.css

style.css in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/milestone/style.css

82 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Milestone Block — bkml- prefix */
2 .bkml-wrap {
3 display: inline-flex;
4 flex-direction: column;
5 align-items: center;
6 gap: 8px;
7 position: relative;
8 width: var(--bkml-size, 160px);
9 }
10 .bkml-svg {
11 display: block;
12 overflow: visible;
13 }
14 .bkml-ring {
15 transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
16 }
17 .bkml-center {
18 position: absolute;
19 top: 50%;
20 left: 50%;
21 transform: translate(-50%, -50%);
22 text-align: center;
23 line-height: 1;
24 }
25 .bkml-pct {
26 font-family: var(--bkml-ct-font-family, inherit);
27 font-size: var(--bkml-ct-font-size-d, var(--bkml-cSz, 28px));
28 font-weight: var(--bkml-ct-font-weight, 700);
29 font-style: var(--bkml-ct-font-style, normal);
30 text-decoration: var(--bkml-ct-text-decoration, none);
31 text-transform: var(--bkml-ct-text-transform, none);
32 line-height: var(--bkml-ct-line-height-d, 1.2);
33 letter-spacing: var(--bkml-ct-letter-spacing-d, normal);
34 word-spacing: var(--bkml-ct-word-spacing-d, normal);
35 color: var(--bkml-text, #222);
36 }
37 .bkml-label {
38 margin: 0;
39 font-family: var(--bkml-lb-font-family, inherit);
40 font-size: var(--bkml-lb-font-size-d, var(--bkml-lSz, 14px));
41 font-weight: var(--bkml-lb-font-weight, 600);
42 font-style: var(--bkml-lb-font-style, normal);
43 text-decoration: var(--bkml-lb-text-decoration, none);
44 text-transform: var(--bkml-lb-text-transform, none);
45 line-height: var(--bkml-lb-line-height-d, 1.3);
46 letter-spacing: var(--bkml-lb-letter-spacing-d, normal);
47 word-spacing: var(--bkml-lb-word-spacing-d, normal);
48 color: var(--bkml-text, #222);
49 opacity: .75;
50 text-align: center;
51 }
52
53 @media (max-width: 1024px) {
54 .bkml-pct {
55 font-size: var(--bkml-ct-font-size-t, var(--bkml-ct-font-size-d, var(--bkml-cSz, 28px)));
56 line-height: var(--bkml-ct-line-height-t, var(--bkml-ct-line-height-d, 1.2));
57 letter-spacing: var(--bkml-ct-letter-spacing-t, var(--bkml-ct-letter-spacing-d, normal));
58 word-spacing: var(--bkml-ct-word-spacing-t, var(--bkml-ct-word-spacing-d, normal));
59 }
60 .bkml-label {
61 font-size: var(--bkml-lb-font-size-t, var(--bkml-lb-font-size-d, var(--bkml-lSz, 14px)));
62 line-height: var(--bkml-lb-line-height-t, var(--bkml-lb-line-height-d, 1.3));
63 letter-spacing: var(--bkml-lb-letter-spacing-t, var(--bkml-lb-letter-spacing-d, normal));
64 word-spacing: var(--bkml-lb-word-spacing-t, var(--bkml-lb-word-spacing-d, normal));
65 }
66 }
67
68 @media (max-width: 767px) {
69 .bkml-pct {
70 font-size: var(--bkml-ct-font-size-m, var(--bkml-ct-font-size-t, var(--bkml-ct-font-size-d, var(--bkml-cSz, 28px))));
71 line-height: var(--bkml-ct-line-height-m, var(--bkml-ct-line-height-t, var(--bkml-ct-line-height-d, 1.2)));
72 letter-spacing: var(--bkml-ct-letter-spacing-m, var(--bkml-ct-letter-spacing-t, var(--bkml-ct-letter-spacing-d, normal)));
73 word-spacing: var(--bkml-ct-word-spacing-m, var(--bkml-ct-word-spacing-t, var(--bkml-ct-word-spacing-d, normal)));
74 }
75 .bkml-label {
76 font-size: var(--bkml-lb-font-size-m, var(--bkml-lb-font-size-t, var(--bkml-lb-font-size-d, var(--bkml-lSz, 14px))));
77 line-height: var(--bkml-lb-line-height-m, var(--bkml-lb-line-height-t, var(--bkml-lb-line-height-d, 1.3)));
78 letter-spacing: var(--bkml-lb-letter-spacing-m, var(--bkml-lb-letter-spacing-t, var(--bkml-lb-letter-spacing-d, normal)));
79 word-spacing: var(--bkml-lb-word-spacing-m, var(--bkml-lb-word-spacing-t, var(--bkml-lb-word-spacing-d, normal)));
80 }
81 }
82