-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from NGSpace/hudderhighlight
Update everythang
- Loading branch information
Showing
15 changed files
with
428 additions
and
221 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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M0SCB1X0YP"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-M0SCB1X0YP'); | ||
</script> | ||
<title>NGS's land</title> | ||
<link rel="icon" href="Images/ngs.png"> | ||
<style> | ||
#icon { | ||
position: absolute; | ||
top: 10%; | ||
left: 5%; | ||
width: 35%; | ||
animation: rotation 50s infinite linear; | ||
} | ||
#message { | ||
position: absolute; | ||
display: block; | ||
top: 14vh; | ||
left: 42%; | ||
width: 100%; | ||
} | ||
#whoops { | ||
font-size: 2.6vw; | ||
border: .2vw dashed #f69c55; | ||
} | ||
#error { | ||
position: absolute; | ||
font-size: 1vw; | ||
top: 15vh; | ||
} | ||
#links { | ||
position: absolute; | ||
font-size: 1vw; | ||
top: 20vh; | ||
} | ||
#links a { | ||
text-decoration: none; | ||
color: brown; | ||
} | ||
#links a:hover { | ||
text-decoration: underline; | ||
} | ||
#page { | ||
color: red; | ||
font-weight: bold; | ||
} | ||
* { | ||
font-family: monospace; | ||
} | ||
@keyframes rotation { | ||
from {transform: rotate(0deg);} | ||
to {transform: rotate(359deg);} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<img id="icon" src="Images/ngs.png"> | ||
<div id="message"> | ||
<span id="whoops">Whoops! That page doesn't exist! <br></span> | ||
<span id="error"> | ||
It appears that the page "<span id="page">PLACEHOLDER</span>" doesn't exist! | ||
</span> | ||
<span id="links"> | ||
<a href="/">Return to NGS's land!</a> | ||
<br> | ||
<a href="/hudder">Return to Hudder wiki!</a> | ||
</span> | ||
</div> | ||
<script> | ||
document.getElementById("page").innerText = window.location.pathname; | ||
</script> | ||
</body> |
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
Binary file not shown.
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.
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
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
Empty file.
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
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,55 @@ | ||
|
||
#ContentPane { | ||
width: 70%; | ||
color: lightgray; | ||
background-size: 100% max(100%,2900px); | ||
font: bold 150px monospace, Fira Mono, serif; | ||
transition: width 0.3s; | ||
} | ||
#ContentPane img {width:66%;} | ||
|
||
#ContentPane { | ||
margin: 0px; | ||
padding: 0px; | ||
font-size: 0px; | ||
} | ||
#ContentPane a:hover { | ||
text-decoration-line: underline; | ||
color: #FF6A00; | ||
} | ||
#ContentPane a { | ||
color: #FF6A00; | ||
text-decoration: none; | ||
} | ||
#ContentPane .Text { | ||
font-size: 0px; | ||
display: grid; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
#ContentPane p { | ||
align-items: center; | ||
vertical-alignment: middle; | ||
font-size:30px; | ||
overflow: hidden; | ||
} | ||
#ContentPane h1 { | ||
color: lightgray; | ||
font: bold 40px monospace, Fira Mono, serif; | ||
} | ||
#NNUEditImage { | ||
width: 42px; | ||
height: 42px; | ||
} | ||
#NNUEditTitle { | ||
font-size:40px; | ||
background: radial-gradient(#FF6A00, #db233c); | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
color: transparent; | ||
} | ||
#NNUEditLogo { | ||
width: 40px; | ||
height:40px; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.