Add freeside orange stripes

pull/1/head
Starbeamrainbowlabs 2021-08-10 01:34:16 +01:00
parent 9eefaff583
commit 9ab2c0cbbc
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2
3 changed files with 8 additions and 1 deletions

View File

@ -93,6 +93,11 @@ It will take a moment to build, but then you'll get a message like this that sho
![](https://imgur.com/VEUQMAB.png)
If you're debugging the feed compatibility code, then setting the `DEBUG_FEEDITEMS` environment variable to a value will cause processed to be logged to the console.
If you're working on the CSS, note that Eleventy will *not* auto-rebuild & reload the browser. For that, you need to re-save a file it *does* watch, such as `index.html`, `.eleventy.js`, etc (even if you haven't made any changes).
### Design Decisions
A number of decisions were made in the design process of this website. These are documented with the reasoning behind them here.

View File

@ -53,7 +53,7 @@ description: "Hull Blogs provides aggregated content from University of Hull stu
</main>
<footer class="shadow-top">
<p>Powered by <a href="https://freeside.co.uk/"><img class="large-icon" src="{% asset 'images/freeside.svg' %}" alt="Freeside logo" aria-hidden="true" />Freeside</a></p>
<p>Powered by <a href="https://freeside.co.uk/"><img class="large-icon" src="{% asset 'images/freeside.svg' %}" alt="Freeside logo" aria-hidden="true" /> Freeside</a></p>
<p>hullblogs.com built with ❤️ by <a href="https://starbeamrainbowlabs.com/"><img class="large-icon" src="{% asset 'https://starbeamrainbowlabs.com/images/sbrl/SBRL-Small-200.png' %}" alt="Starbeamrainbowlabs' logo" aria-hidden="true" />Starbeamrainbowlabs</p>
<p>Tech: <a href="https://www.11ty.dev/">Eleventy</a> (this website), <a href="https://useiconic.com/open">Open Iconic</a> (icons)<!--, <a href="https://www.heropatterns.com/">Hero Patterns</a> (background patterns)-->, <a href="https://github.com/shssoichiro/oxipng">Oxipng</a> (PNG image compression), <a href="https://www.npmjs.com/package/feedme"><code>feedme</code></a> (for parsing feeds)</p>

View File

@ -93,6 +93,7 @@ body > nav {
grid-area: nav;
background: var(--text-main);
color: var(--bg-bright);
border-bottom: 0.2em solid var(--bg-bright);
}
body > nav {
margin: 0;
@ -178,6 +179,7 @@ footer {
grid-area: footer;
background: var(--text-alt);
color: var(--bg-bright);
border-top: 0.2em solid var(--bg-bright);
text-align: center;
}