PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.5.2
FrontBlocks for Gutenberg/GeneratePress v1.5.2
1.5.2 1.5.1 1.4.0 1.5.0 trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / assets / maintenance / frontblocks-maintenance.css
frontblocks / assets / maintenance Last commit date
frontblocks-maintenance.css 1 week ago
frontblocks-maintenance.css
51 lines
1 /**
2 * FrontBlocks Maintenance Mode Styles
3 *
4 * @package FrontBlocks
5 * @version 1.0.0
6 */
7
8 html,
9 body.frbl-maintenance-body {
10 margin: 0;
11 padding: 0;
12 height: 100%;
13 background-color: #111111;
14 }
15
16 .frbl-maintenance-overlay {
17 position: fixed;
18 inset: 0;
19 display: flex;
20 align-items: center;
21 justify-content: center;
22 text-align: center;
23 padding: 24px;
24 box-sizing: border-box;
25 background-color: #111111;
26 background-size: cover;
27 background-position: center;
28 background-repeat: no-repeat;
29 }
30
31 .frbl-maintenance-overlay::before {
32 content: '';
33 position: absolute;
34 inset: 0;
35 background-color: rgba(0, 0, 0, 0.55);
36 }
37
38 .frbl-maintenance-content {
39 position: relative;
40 max-width: 720px;
41 }
42
43 .frbl-maintenance-title {
44 margin: 0;
45 color: #ffffff;
46 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
47 font-size: clamp(1.5rem, 4vw, 2.75rem);
48 font-weight: 700;
49 line-height: 1.3;
50 }
51