From 160c83f99f97887967b3f9142d499761de070330 Mon Sep 17 00:00:00 2001 From: Roscoe Date: Mon, 14 Apr 2025 23:44:59 +0100 Subject: accessibilify --- config/app.php | 2 +- public/css/master.css | 14 +++--- resources/views/components/layout.blade.php | 70 ++++++++++++++++------------- 3 files changed, 46 insertions(+), 40 deletions(-) diff --git a/config/app.php b/config/app.php index 8597cd6..384d755 100644 --- a/config/app.php +++ b/config/app.php @@ -5,7 +5,7 @@ use Illuminate\Support\ServiceProvider; 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'), diff --git a/public/css/master.css b/public/css/master.css index 7de623b..3a349cb 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -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; diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php index 9dd2160..d4b2c87 100644 --- a/resources/views/components/layout.blade.php +++ b/resources/views/components/layout.blade.php @@ -20,42 +20,48 @@
- {{ $slot }} +
+ {{ $slot }} +
-- cgit v1.2.3-54-g00ecf