codemirror
7 months ago
datatables
7 months ago
admin-menu-organizer.css
7 months ago
admin-page.css
7 months ago
content-order.css
7 months ago
gutenberg-content-duplication.css
7 months ago
hide-admin-notices.css
7 months ago
image-sizes-panel.css
7 months ago
jBox.all.min.css
7 months ago
list-table.css
7 months ago
list-tables-content-order.css
7 months ago
maintenance.css
7 months ago
media-categories-frontend.css
7 months ago
media-replace-frontend.css
7 months ago
media-replace.css
7 months ago
select2.min.css
7 months ago
settings-wpeditor.css
7 months ago
wp-admin.css
7 months ago
maintenance.css
95 lines
| 1 | /* CSS styles here are for the maintenance page set through Utilities >> Maintenance Mode */ |
| 2 | |
| 3 | * { |
| 4 | box-sizing: border-box; |
| 5 | } |
| 6 | |
| 7 | html, body { |
| 8 | width: 100%; |
| 9 | height: 100%; |
| 10 | margin: 0px; |
| 11 | padding: 0px; |
| 12 | } |
| 13 | |
| 14 | body { |
| 15 | background-color: #ffffff; |
| 16 | background-attachment: fixed; |
| 17 | background-size: cover; |
| 18 | } |
| 19 | |
| 20 | .page-wrapper { |
| 21 | display: flex; |
| 22 | flex-direction: column; |
| 23 | align-items: center; |
| 24 | justify-content: center; |
| 25 | height: 100vh; |
| 26 | /* background-image: linear-gradient(to bottom, #ffffff, #eeeeee, #dddddd, #cccccc, #bbbbbb); */ |
| 27 | } |
| 28 | |
| 29 | .page-overlay { |
| 30 | position: absolute; |
| 31 | display: block; |
| 32 | z-index: 0; |
| 33 | top: 0; |
| 34 | right: 0; |
| 35 | bottom: 0; |
| 36 | left: 0; |
| 37 | } |
| 38 | |
| 39 | .message-box { |
| 40 | position: relative; |
| 41 | display: flex; |
| 42 | z-index: 1; |
| 43 | flex-direction: column; |
| 44 | align-items: center; |
| 45 | width: 50%; |
| 46 | font-family: "Arial", "Helvetica", sans-serif; |
| 47 | text-align: center; |
| 48 | } |
| 49 | |
| 50 | .message-box h1 { |
| 51 | font-size: 3em; |
| 52 | font-weight: 500; |
| 53 | margin-top: 0; |
| 54 | margin-bottom: 0; |
| 55 | } |
| 56 | |
| 57 | .message-box h1 p { |
| 58 | margin-top: 0; |
| 59 | margin-bottom: 0; |
| 60 | } |
| 61 | |
| 62 | .message-box .description { |
| 63 | font-size: 1.25em; |
| 64 | line-height: 1.7; |
| 65 | } |
| 66 | |
| 67 | @media screen and (max-width: 920px) { |
| 68 | |
| 69 | .message-box { |
| 70 | width: 100%; |
| 71 | padding: 0 15%; |
| 72 | } |
| 73 | |
| 74 | .message-box h1 { |
| 75 | font-size: 2em; |
| 76 | } |
| 77 | |
| 78 | } |
| 79 | |
| 80 | @media screen and (max-width: 480px) { |
| 81 | |
| 82 | .message-box { |
| 83 | width: 100%; |
| 84 | padding: 0 40px; |
| 85 | } |
| 86 | |
| 87 | .message-box h1 { |
| 88 | font-size: 1.5em; |
| 89 | } |
| 90 | |
| 91 | .message-box .description { |
| 92 | font-size: 1em; |
| 93 | } |
| 94 | |
| 95 | } |