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 |