Remove comments, style tweaks

This commit is contained in:
Matthias Portzel 2023-07-04 09:08:35 -07:00
parent 39ce2597f5
commit bd267ecbe7
2 changed files with 26 additions and 25 deletions

View File

@ -86,11 +86,21 @@ a, a:visited {
font-weight: 700;
}
}
html, body {
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
min-width: 100%;
min-height: 100%;
position: absolute;
// Bottom padding so #hero-pattern-attribution never overlaps content
padding-bottom: 45px;
}
body {
@ -358,17 +368,17 @@ ul.links-list {
}
#hero-pattern-attribution {
text-align: right;
display: block;
display: inline-block;
position: absolute;
right: 0;
bottom: 0;
padding: 10px;
background-color: var(--body-background);
opacity: 50%;
color: var(--accent);
span {
padding: 15px;
background-color: var(--body-background);
opacity: 50%;
a {
color: var(--accent);
a {
color: var(--accent);
}
}
}

View File

@ -10,22 +10,14 @@
{{!-- Theme assets - use the {asset} helper to reference styles & scripts,
this will take care of caching and cache-busting automatically --}}
{{!-- TODO: Do I need this? --}}
<link rel="stylesheet" type="text/css" href="{{asset "assets/built/main.css"}}" />
{{!-- comment --}}
<script src="{{asset "assets/scripts/smartquotes.js"}}"></script>
{{!-- comment --}}
<script>smartquotes();</script>
{{!-- comment --}}
{{!-- This tag outputs all your advanced SEO meta, structured data, and other important settings,
it should always be the last tag before the closing head tag --}}
{{ghost_head}}
</head>
<body>
<main>
@ -40,7 +32,6 @@
</h1>
<nav>
{{!-- https://ghost.org/docs/themes/helpers/navigation/ --}}
{{!-- TODO: .nav-current is the class used for the current page--}}
{{navigation}}
</nav>
</section>
@ -49,15 +40,15 @@
{{!-- My content footer --}}
<section class="footer">
They are in awe of my many talents.
<a href="/ideas/soli-deo-gloria">The glory to God alone.</a>
</section>
{{!-- Ghost scripts --}}
{{!-- Ghost outputs required functional scripts with this tag - it should always be the last thing before the closing body tag --}}
{{ghost_foot}}
</main>
<div id="hero-pattern-attribution"><span>Background from <a href="https://heropatterns.com">Hero Patterns</a>; <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></span></div>
<div id="hero-pattern-attribution">Background from <a href="https://heropatterns.com">Hero Patterns</a>; <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div>
{{!-- Ghost scripts --}}
{{!-- Ghost outputs required functional scripts with this tag - it should always be the last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>