accessibilify

This commit is contained in:
Roscoe 2025-04-14 23:44:59 +01:00
parent f3e2d1e2fc
commit 160c83f99f
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
3 changed files with 46 additions and 40 deletions

View file

@ -5,7 +5,7 @@
return [
'name' => env('APP_NAME', 'wah.moe'),
'version' => '2025.04.13',
'version' => '2025.04.14',
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'),

View file

@ -150,7 +150,7 @@ div.page-container > div:last-child {
margin-bottom: 0;
}
div#header {
header {
display: grid;
grid-template-columns: 66px 1fr;
grid-template-rows: 1fr;
@ -159,27 +159,27 @@ div#header {
align-items: center;
}
div#header img {
header img {
filter: drop-shadow(2px 2px hsl(0, 0%, 66%));
margin-right: 10px;
image-rendering: pixelated;
}
div#header h1 {
header h1 {
margin: 0;
font-style: italic;
}
div#header h1,
div#header p {
header h1,
header p {
display: inline;
}
div#content {
main>div {
position: relative;
}
div#content::after {
main>div::after {
display: block;
content: "";
clear: both;

View file

@ -20,6 +20,7 @@
<body>
<div class="page-container">
<div id="header">
<header>
<div>
<img src="{{ asset('/images/logo.png') }}" width="65" alt="A pixel art depiction of a paw, in three alternating shades of orange.">
</div>
@ -30,11 +31,15 @@
</p>
<x-navigation></x-navigation>
</div>
</header>
</div>
<div id="content">
<main>
{{ $slot }}
</main>
</div>
<div id="footer">
<footer>
<div>
<span>
&copy; RoscoeDaWah 2021-{{ date('Y') }}<br>
@ -48,7 +53,7 @@
<a href="https://julimiro.eu/"><img src="{{ URL::asset('images/buttons/juli.gif') }}" alt="Julimiro.eu"></a>
<a href="https://x86.isafox.gay/"><img src="{{ URL::asset('images/buttons/x86.gif') }}" alt="x86Overflow"></a>
<a href="https://thinliquid.dev/"><img src="{{ URL::asset('images/buttons/thnlqd.png') }}" alt="thinliquid"></a>
<a href="https://dimden.dev/"><img src="https://dimden.dev/services/images/88x31.gif" alt="dimden.dev"></a><br>
<a href="https://dimden.dev/"><img src="https://dimden.dev/services/images/88x31.gif" alt="Dimden's website"></a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS"><img src="{{ URL::asset('images/buttons/csshard.gif') }}" alt="CSS is hard"></a>
<a href="https://linux.org/"><img src="{{ URL::asset('images/buttons/linuxnow.gif') }}" alt="Linux NOW!"></a>
<img src="{{ URL::asset('images/buttons/paws-aliased.png') }}" alt="Made with my own two paws">
@ -56,6 +61,7 @@
<a href="https://www.vim.org/"><img src="{{ URL::asset('images/buttons/vim.gif') }}" alt="Vim"></a>
<img src="{{ URL::asset('images/buttons/aliasing.png') }}" alt="I Heart Aliasing">
</div>
</footer>
</div>
</div>
</body>