forked from jakub/jakubb-hugo
Compare commits
No commits in common. "23e658e76806178ef322e4ec46feb992726bc352" and "c17913e3ff24bd4d9d76818be820f52b797da0fb" have entirely different histories.
23e658e768
...
c17913e3ff
@ -1,10 +1,12 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<div class="content">
|
||||
<h1>Error 404: </h1>
|
||||
<h2>Page Not Found</h2>
|
||||
|
||||
<p>The url you entered is invalid or has been deleted.</p>
|
||||
|
||||
<p><a class="button" href="/">Click here to return home.</a></p>
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
@ -3,19 +3,6 @@
|
||||
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a><br/>
|
||||
<a href="/contact">[ Contact ]</a> <a href="/donate">[ Donate ]</a> <a href="/donate">[ RSS ]</a> <br/>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// JavaScript to check if content is shorter than the screen
|
||||
// and add fixed class to footer if needed
|
||||
window.addEventListener('DOMContentLoaded', function() {
|
||||
var content = document.querySelector('.content');
|
||||
var footer = document.querySelector('footer');
|
||||
|
||||
if (content.offsetHeight < window.innerHeight) {
|
||||
footer.classList.add('fixed');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -4,9 +4,6 @@
|
||||
--alt-bg: #d5c4a1;
|
||||
--acc-1: #076678;
|
||||
--shadow: #504945;
|
||||
|
||||
--table: #fbf1c7;
|
||||
--table-alt: #d5c4a1;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
@ -16,8 +13,5 @@
|
||||
--alt-bg: #504945;
|
||||
--acc-1: #83a598;
|
||||
--shadow: #1d2021;
|
||||
|
||||
--table: #282828;
|
||||
--table-alt: #504945;
|
||||
}
|
||||
}
|
||||
}
|
@ -30,13 +30,6 @@ footer {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
footer.fixed {
|
||||
margin: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Header and Navigation Menu */
|
||||
.header {
|
||||
@ -177,10 +170,8 @@ footer.fixed {
|
||||
.menu a, .menu li { display: block; }
|
||||
|
||||
.content {
|
||||
margin-left: calc(15%);
|
||||
margin-top: auto;
|
||||
padding: 20px;
|
||||
|
||||
margin: auto 5% auto 20%;
|
||||
padding: 1px 16px;
|
||||
}
|
||||
|
||||
.menu-entries a:hover{
|
||||
@ -188,26 +179,8 @@ footer.fixed {
|
||||
}
|
||||
}
|
||||
|
||||
/* Table Styles */
|
||||
|
||||
table { width: 100%; }
|
||||
|
||||
th, td, table {
|
||||
border: 1px solid var(--bg);
|
||||
border-collapse: collapse;
|
||||
padding: 6px 13px;
|
||||
}
|
||||
|
||||
table thead tr { background-color: var(--table); }
|
||||
|
||||
table tr { background-color: var(--table-alt); }
|
||||
|
||||
table tr:nth-child(2n) { background-color: var(--table); }
|
||||
|
||||
|
||||
|
||||
/* Markdown Blockquote styles */
|
||||
|
||||
/* Hugo Supported Markdown Styling */
|
||||
/* ToDO style md elements that have yet to been styled */
|
||||
blockquote {
|
||||
border-left-color: var(--alt-bg);
|
||||
border-left-width: 5px;
|
||||
@ -276,6 +249,31 @@ blockquote.location p { padding: inherit; }
|
||||
display: block;
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.grid-item p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.map-button {
|
||||
color: var(--fg);
|
||||
background-color: var(--acc-1);
|
||||
padding: 5px;
|
||||
border: solid 3px var(--acc-1);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.map {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.map img {
|
||||
width: 350px;
|
||||
max-height: 350px;
|
||||
}
|
||||
.map-txt-grid {
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
|
Loading…
Reference in New Issue
Block a user