This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Implements the design for the 404 page
- Loading branch information
Showing
5 changed files
with
72 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
@import url("https://fonts.cdnfonts.com/css/poppins"); | ||
|
||
.footer { | ||
background-color: #fff; | ||
text-align: center; | ||
} | ||
|
||
.top { | ||
background-color: #fff; | ||
text-align: center; | ||
padding: 40px; | ||
} | ||
|
||
.top img { | ||
text-align: center; | ||
margin: auto; | ||
padding: auto; | ||
width: 300px; | ||
height: 150px; | ||
} | ||
|
||
.top h2 { | ||
font-family: "Poppins", sans-serif; | ||
padding: 10px; | ||
font-style: normal; | ||
font-weight: 600; | ||
font-size: 32px; | ||
line-height: 48px; | ||
color: #000000; | ||
} | ||
|
||
.top p { | ||
font-family: "Poppins", sans-serif; | ||
font-style: normal; | ||
font-weight: 400; | ||
font-size: 16px; | ||
line-height: 30px; | ||
padding: 10px; | ||
padding-bottom: 50px; | ||
text-align: center; | ||
color: #000000; | ||
} | ||
|
||
.top button { | ||
margin-top: 60px; | ||
align-items: center; | ||
padding: 18px 32px; | ||
gap: 8px; | ||
width: 305px; | ||
height: 60px; | ||
background: #d61b5e; | ||
color: #fff; | ||
border-radius: 4px; | ||
} |
This file contains 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