Compare commits

...

2 Commits

Author SHA1 Message Date
Asif Bacchus 5fbb237703 add links to all footers 2020-02-22 15:04:40 -07:00
Asif Bacchus a26994f040 switch to vars for colours and fonts 2020-02-22 14:59:29 -07:00
7 changed files with 30 additions and 11 deletions

View File

@ -15,7 +15,7 @@
<p class="instructions">Please verify you have the right address and you are submitting all information correctly. If you came here from another page, there might be something wrong with the way that page is coded or you screwed up filling something out. (error 400)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -15,7 +15,7 @@
<p class="instructions">You're not authorized to view this content. You probably supplied the wrong credentials, please try again. (error 401)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image by Vectorpouch from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image by Vectorpouch from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -15,7 +15,7 @@
<p class="instructions">You're not authorized to view this content. This is NOT a credential error, you're just not allowed to be here. (error 403)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image by Vectorpouch from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image by Vectorpouch from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -15,7 +15,7 @@
<p class="instructions">Please make sure you typed the right address and try again. (error 404)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -16,7 +16,7 @@
<p class="instructions">Sorry for the delay. Please try again soon. (error 503)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -15,7 +15,7 @@
<p class="instructions">This is often a temporary condition. Please try again later. (error 50x)</p>
<div class="spacer"></div>
<footer>
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at https://git.asifbacchus.app/asif/fun-errorpages.git. Monster image from Freepik (www.freepik.com).
Page designed by Asif Bacchus. Please feel free to use, redistribute and alter as you see fit! Latest version available at <a href="https://git.asifbacchus.app/asif/fun-errorpages.git" alt="git repo" target="_blank">https://git.asifbacchus.app/asif/fun-errorpages.git</a>. Monster image from <a href="https://www.freepik.com" alt="Freepik homepage" target="_blank">Freepik (www.freepik.com)</a>.
</footer>
</body>
</html>

View File

@ -98,19 +98,38 @@ styles for this page
src: url(/errorpages/fonts/opensans-regular.ttf) format("truetype");
}
/* define variables */
:root {
--color-bg: #323232;
--color-text: #9D9B9B;
--color-instructions: yellow;
--font-header: 'Open Sans Condensed';
--font-base: 'Open Sans';
}
body {
flex-direction: column;
font-family: 'Open Sans', sans-serif;
font-family: var(--font-base), sans-serif;
align-items: center;
background-color: #323232;
color: #9D9B9B;
background-color: var(--color-bg);
color: var(--color-text);
display: flex;
padding: 2rem;
}
a {
color: var(--color-text);
font-family: inherit;
font-size: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
font-family: 'Open Sans Condensed';
font-family: var(--font-header);
font-size: 7rem;
}
@ -133,7 +152,7 @@ footer {
.instructions {
color: yellow;
color: var(--color-instructions);
font-weight: bold;
text-shadow: 2px 2px 5px #000000;
}