forked from NginxProxyManager/nginx-proxy-manager
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default site and error 404 site layout and design
- Loading branch information
1 parent
e258b72
commit efcd6ee
Showing
2 changed files
with
172 additions
and
2 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 +1,84 @@ | ||
todo | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>404 Not Found</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
</head> | ||
<body> | ||
<style> | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background-color: rgb(17 24 39); | ||
color: white; | ||
} | ||
|
||
#box { | ||
background-color: rgb(31 41 55); | ||
} | ||
} | ||
|
||
@media (prefers-color-scheme: light) { | ||
body { | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
#box { | ||
background-color: rgb(229 231 235); | ||
} | ||
} | ||
|
||
body { | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
text-align: center; | ||
} | ||
|
||
#box { | ||
border-radius: 2rem; | ||
position: absolute; | ||
padding: 1rem; | ||
padding-right: 5rem; | ||
padding-left: 5rem; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
h1 { | ||
font-size: 64px; | ||
} | ||
|
||
p { | ||
font-size: 24px; | ||
} | ||
|
||
#notice { | ||
font-size: 12px; | ||
position: fixed; | ||
bottom: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
} | ||
|
||
@media (max-width: 600px) { | ||
h1 { | ||
font-size: 32px; | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
} | ||
|
||
#box { | ||
padding-right: 2rem; | ||
padding-left: 2rem; | ||
} | ||
} | ||
</style> | ||
<div id="box"> | ||
<h1>404 Not Found</h1> | ||
</div> | ||
<p id="notice">Powered by <a href="https://github.com/ZoeyVid/NPMplus">NPMplus</a></p> | ||
</body> | ||
</html> |
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 +1,88 @@ | ||
todo | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Default Site</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
</head> | ||
<body> | ||
<style> | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background-color: rgb(17 24 39); | ||
color: white; | ||
} | ||
|
||
#box { | ||
background-color: rgb(31 41 55); | ||
} | ||
} | ||
|
||
@media (prefers-color-scheme: light) { | ||
body { | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
#box { | ||
background-color: rgb(229 231 235); | ||
} | ||
} | ||
|
||
body { | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
text-align: center; | ||
} | ||
|
||
#box { | ||
border-radius: 2rem; | ||
position: absolute; | ||
padding: 1rem; | ||
padding-right: 5rem; | ||
padding-left: 5rem; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
h1 { | ||
font-size: 64px; | ||
} | ||
|
||
p { | ||
font-size: 24px; | ||
} | ||
|
||
#notice { | ||
font-size: 12px; | ||
position: fixed; | ||
bottom: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
} | ||
|
||
|
||
@media (max-width: 600px) { | ||
h1 { | ||
font-size: 32px; | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
} | ||
|
||
#box { | ||
padding-right: 2rem; | ||
padding-left: 2rem; | ||
} | ||
} | ||
</style> | ||
<div id="box"> | ||
<h1>Congratulations!</h1> | ||
<p>You've successfully started NPMplus.</p> | ||
<p>If you're seeing this site then you're trying to access a host that isn't set up yet.</p> | ||
<p>Log in to the Admin panel to get started.</p> | ||
</div> | ||
<p id="notice">Powered by <a href="https://github.com/ZoeyVid/NPMplus">NPMplus</a></p> | ||
</body> | ||
</html> |