Last active
August 8, 2022 20:48
-
-
Save MariaJackson1/924380be9018a430882b3a2242185de7 to your computer and use it in GitHub Desktop.
Style 404 Page on GPP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Style 404 Page */ | |
| .error404 .site-main { | |
| width: 100%; | |
| } | |
| .error404 .site-content { | |
| display: flex; | |
| flex-direction: row; | |
| align-items: center; | |
| justify-content: center; | |
| height: calc(100vh - 160px); | |
| } | |
| .error404 h2.entry-title { | |
| text-align: center; | |
| } | |
| .error404 .entry-content { | |
| text-align: center; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment