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 / commit-history / style.css

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

68 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-commit-history-app {
2 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
3 }
4
5 /* ── Typography: Message ── */
6 .bkcmh-msg {
7 font-family: var(--bkcmh-msg-font-family, inherit);
8 font-size: var(--bkcmh-msg-font-size-d, 14px);
9 font-weight: var(--bkcmh-msg-font-weight, 500);
10 line-height: var(--bkcmh-msg-line-height-d, 1.7);
11 text-transform: var(--bkcmh-msg-text-transform, none);
12 font-style: var(--bkcmh-msg-font-style, normal);
13 text-decoration: var(--bkcmh-msg-text-decoration, none);
14 letter-spacing: var(--bkcmh-msg-letter-spacing-d, normal);
15 word-spacing: var(--bkcmh-msg-word-spacing-d, normal);
16 }
17
18 /* ── Typography: Meta ── */
19 .bkcmh-meta {
20 font-family: var(--bkcmh-meta-font-family, inherit);
21 font-size: var(--bkcmh-meta-font-size-d, 13px);
22 font-weight: var(--bkcmh-meta-font-weight, inherit);
23 line-height: var(--bkcmh-meta-line-height-d, 1.4);
24 text-transform: var(--bkcmh-meta-text-transform, none);
25 font-style: var(--bkcmh-meta-font-style, normal);
26 text-decoration: var(--bkcmh-meta-text-decoration, none);
27 letter-spacing: var(--bkcmh-meta-letter-spacing-d, normal);
28 word-spacing: var(--bkcmh-meta-word-spacing-d, normal);
29 }
30
31 .bkcmh-hash {
32 font-family: monospace;
33 font-size: var(--bkcmh-meta-font-size-d, 12px);
34 letter-spacing: 0.06em;
35 }
36
37 /* ── Responsive ── */
38 @media (max-width: 1024px) {
39 .bkcmh-msg {
40 font-size: var(--bkcmh-msg-font-size-t, var(--bkcmh-msg-font-size-d, 14px));
41 line-height: var(--bkcmh-msg-line-height-t, var(--bkcmh-msg-line-height-d, 1.7));
42 letter-spacing: var(--bkcmh-msg-letter-spacing-t, var(--bkcmh-msg-letter-spacing-d, normal));
43 word-spacing: var(--bkcmh-msg-word-spacing-t, var(--bkcmh-msg-word-spacing-d, normal));
44 }
45 .bkcmh-meta,
46 .bkcmh-hash {
47 font-size: var(--bkcmh-meta-font-size-t, var(--bkcmh-meta-font-size-d, 13px));
48 line-height: var(--bkcmh-meta-line-height-t, var(--bkcmh-meta-line-height-d, 1.4));
49 letter-spacing: var(--bkcmh-meta-letter-spacing-t, var(--bkcmh-meta-letter-spacing-d, normal));
50 word-spacing: var(--bkcmh-meta-word-spacing-t, var(--bkcmh-meta-word-spacing-d, normal));
51 }
52 }
53 @media (max-width: 767px) {
54 .bkcmh-msg {
55 font-size: var(--bkcmh-msg-font-size-m, var(--bkcmh-msg-font-size-t, var(--bkcmh-msg-font-size-d, 14px)));
56 line-height: var(--bkcmh-msg-line-height-m, var(--bkcmh-msg-line-height-t, var(--bkcmh-msg-line-height-d, 1.7)));
57 letter-spacing: var(--bkcmh-msg-letter-spacing-m, var(--bkcmh-msg-letter-spacing-t, var(--bkcmh-msg-letter-spacing-d, normal)));
58 word-spacing: var(--bkcmh-msg-word-spacing-m, var(--bkcmh-msg-word-spacing-t, var(--bkcmh-msg-word-spacing-d, normal)));
59 }
60 .bkcmh-meta,
61 .bkcmh-hash {
62 font-size: var(--bkcmh-meta-font-size-m, var(--bkcmh-meta-font-size-t, var(--bkcmh-meta-font-size-d, 13px)));
63 line-height: var(--bkcmh-meta-line-height-m, var(--bkcmh-meta-line-height-t, var(--bkcmh-meta-line-height-d, 1.4)));
64 letter-spacing: var(--bkcmh-meta-letter-spacing-m, var(--bkcmh-meta-letter-spacing-t, var(--bkcmh-meta-letter-spacing-d, normal)));
65 word-spacing: var(--bkcmh-meta-word-spacing-m, var(--bkcmh-meta-word-spacing-t, var(--bkcmh-meta-word-spacing-d, normal)));
66 }
67 }
68