Compare commits

..

No commits in common. "2fe579bcc7c00781f77ce80e0c3ed6b0eb6234dd" and "f08b173cc439ad1775f8f07ddf2c5d99be5ee99c" have entirely different histories.

3 changed files with 24 additions and 46 deletions

View file

@ -203,19 +203,6 @@ body {
flex-direction: column; flex-direction: column;
min-height: 98vh; min-height: 98vh;
margin: 0 8px; margin: 0 8px;
align-items: center;
}
.container {
max-width: min(60rem, 100vw - 2rem);
}
.footer-inner {
width: min(60rem, 100vw - 2rem);
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
} }
a { a {
@ -308,14 +295,14 @@ figure:has(blockquote) > figcaption {
} }
footer { footer {
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--container-background); background-color: var(--container-background);
margin: 0 0 -1em -1em; margin: 0 0 -1em -1em;
width: calc(100% - 1em); width: calc(100% - 1em);
padding: 0.25em 1.25em; padding: 0.25em 1.25em;
font-size: smaller; display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
} }
form { form {

View file

@ -18,8 +18,6 @@
animation: sticky-header linear forwards; animation: sticky-header linear forwards;
animation-timeline: scroll(); animation-timeline: scroll();
animation-range: 0 30vh; animation-range: 0 30vh;
contain: content;
} }
@keyframes blurry-header { @keyframes blurry-header {
@ -62,7 +60,6 @@
main section { main section {
margin: 0 0.25em; margin: 0 0.25em;
contain: content;
} }
} /* end @supports */ } /* end @supports */
} /* end @media */ } /* end @media */

View file

@ -37,37 +37,31 @@
<body> <body>
<div class="container"> <header>
<header> <object data="{{ $millironx.Permalink }}">
<object data="{{ $millironx.Permalink }}"> <img src="{{ $millironx.Permalink }}" alt="Milliron X" />
<img src="{{ $millironx.Permalink }}" alt="Milliron X" /> </object>
</object> <h1 class="font-small-caps">Milliron X</h1>
<h1 class="font-small-caps">Milliron X</h1> </header>
</header> <div class="row" id="content">
<div class="row" id="content"> {{ partial "sidebar" . }}
{{ partial "sidebar" . }} <main>{{ block "main" . }}{{ .Content }}{{ end }}</main>
<main>{{ block "main" . }}{{ .Content }}{{ end }}</main>
</div>
</div> </div>
<footer> <footer>
{{ $brandedbull := resources.Get "graphics/brandedbull.svg" }} {{ $brandedbull := resources.Get "graphics/brandedbull.svg" }}
{{ $brandedbullsmall := $brandedbull | resources.Minify }} {{ $brandedbullsmall := $brandedbull | resources.Minify }}
<div class="container"> <img src="{{ $brandedbullsmall.Permalink }}" height="95rem" />
<div class="footer-inner">
<img src="{{ $brandedbullsmall.Permalink }}" height="95rem" />
<p> <p>
&copy; {{ now | time.Format "2006" }} Thomas A. Christensen II &copy; {{ now | time.Format "2006" }} Thomas A. Christensen II
<br /> <br />
Licensed Licensed
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/" <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"
>CC-BY 4.0</a >CC-BY 4.0</a
> >
<br /> <br />
Built with <a href="https://gohugo.io">Hugo</a> v{{ hugo.Version }} Built with <a href="https://gohugo.io">Hugo</a> v{{ hugo.Version }}
</p> </p>
</div>
</div>
</footer> </footer>
{{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }} {{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }}