forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
237fd4f
commit a6db5aa
Showing
1 changed file
with
80 additions
and
72 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,90 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>404 Not Found</title> | ||
<style> | ||
@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:400,600|Miriam+Libre:400"); | ||
@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:400,600|Miriam+Libre:400"); | ||
|
||
.not-found-header { | ||
display: flex; | ||
flex-direction: row; | ||
padding-bottom: 1rem; | ||
margin: 0 1rem 10rem 1rem; | ||
border-bottom: 1px solid #E2E0E7; | ||
} | ||
.not-found-header { | ||
display: flex; | ||
flex-direction: row; | ||
padding-bottom: 1rem; | ||
margin: 0 1rem 10rem 1rem; | ||
border-bottom: 1px solid #e2e0e7; | ||
} | ||
|
||
.not-found-logo { | ||
height: 3rem; | ||
width: auto; | ||
} | ||
.not-found-logo { | ||
height: 3rem; | ||
width: auto; | ||
} | ||
|
||
.not-found-content { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
} | ||
.not-found-content { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
} | ||
|
||
h2 { | ||
font-family: "Miriam Libre", Arial, serif; | ||
font-size: 4rem; | ||
} | ||
h2 { | ||
font-family: "Miriam Libre", Arial, serif; | ||
font-size: 4rem; | ||
} | ||
|
||
p { | ||
font-family: "Libre Franklin", Arial, serif; | ||
font-size: 1.5rem; | ||
text-decoration: none; | ||
color: #757087; | ||
line-height: 1rem; | ||
} | ||
p { | ||
font-family: "Libre Franklin", Arial, serif; | ||
font-size: 1.5rem; | ||
text-decoration: none; | ||
color: #757087; | ||
line-height: 1rem; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
|
||
.not-found-copy { | ||
text-align: center; | ||
} | ||
.not-found-copy { | ||
text-align: center; | ||
} | ||
|
||
.not-found-go-home { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background: #FFFFFF; | ||
border: 1px solid #E2E0E7; | ||
border-radius: 4px; | ||
font-family: "Libre Franklin", Arial, serif; | ||
font-weight: 400; | ||
color: #757087; | ||
width: 120px; | ||
height: 48px; | ||
} | ||
.not-found-go-home { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background: #ffffff; | ||
border: 1px solid #e2e0e7; | ||
border-radius: 4px; | ||
font-family: "Libre Franklin", Arial, serif; | ||
font-weight: 400; | ||
color: #757087; | ||
width: 120px; | ||
height: 48px; | ||
} | ||
|
||
.not-found-go-home:hover { | ||
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); | ||
} | ||
.not-found-go-home:hover { | ||
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="not-found-header"> | ||
<a href="https://passport.gitcoin.co/"> | ||
<img class="not-found-logo" src="./assets/GitcoinLogo.svg" alt="A neat space station"/> | ||
</a> | ||
</div> | ||
<div class="not-found-content"> | ||
<img class="spaceship" src="./assets/coolSpacestation.svg" alt="gitcoin logo"/> | ||
<div class="not-found-copy"> | ||
</head> | ||
<body> | ||
<div class="not-found-header"> | ||
<a href="https://passport.gitcoin.co/"> | ||
<img | ||
class="not-found-logo" | ||
src="./assets/GitcoinLogo.svg" | ||
alt="A neat space station" | ||
/> | ||
</a> | ||
</div> | ||
<div class="not-found-content"> | ||
<img | ||
class="spaceship" | ||
src="./assets/coolSpacestation.svg" | ||
alt="gitcoin logo" | ||
/> | ||
<div class="not-found-copy"> | ||
<h2>404 Error</h2> | ||
<p>This is a broken page, make sure the full link or url is included.</p> | ||
<p> | ||
This is a broken page, make sure the full link or url is included. | ||
</p> | ||
<p>For support, contact us on Discord.</p> | ||
</div> | ||
<a href="https://passport.gitcoin.co/"> | ||
<div class="not-found-go-home">Go Home</div> | ||
</a> | ||
</div> | ||
<a href="https://passport.gitcoin.co/"> | ||
<div class="not-found-go-home"> | ||
Go Home | ||
</div> | ||
</a> | ||
</div> | ||
</body> | ||
</body> | ||
</html> |