diff options
author | Roscoe <roscoe@wah.moe> | 2025-06-12 02:58:05 +0100 |
---|---|---|
committer | Roscoe <roscoe@wah.moe> | 2025-06-12 02:58:05 +0100 |
commit | 42de426467a31a618eb4890ebee8915cb9a6055f (patch) | |
tree | a3260dd41c6f197d49c2b2186020551251609ca5 | |
parent | 54bf26bd3579d896f1710fedc7871ba9add4fbbd (diff) |
-rw-r--r-- | config/app.php | 2 | ||||
-rw-r--r-- | public/css/master.css | 20 | ||||
-rw-r--r-- | public/images/progress.svg | 31 | ||||
-rw-r--r-- | resources/views/components/layout.blade.php | 3 |
4 files changed, 54 insertions, 2 deletions
diff --git a/config/app.php b/config/app.php index 8029ed1..afd6823 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.05.02', + 'version' => '2025.06.12', '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 3a349cb..f17a982 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -68,7 +68,25 @@ font-style: italic; } - +/* ───────────────────────────────────── Pride ────────────────────────────────────── */ +#prideflag { + position: fixed; + top: 0; + right: 0; + width: 120px; + transform-origin: 100% 0%; + transition: transform .5s cubic-bezier(.32,1.63,.41,1.01); + z-index: 8008135; +} +#prideflag:hover { + transform: scale(110%); +} +#prideflag:active { + transform: scale(110%); +} +#prideflag * { + pointer-events: all; +} /* ───────────────────────────────────── Global ───────────────────────────────────── */ html { diff --git a/public/images/progress.svg b/public/images/progress.svg new file mode 100644 index 0000000..0e3bd33 --- /dev/null +++ b/public/images/progress.svg @@ -0,0 +1,31 @@ +<!-- + pride flag - copyright (c) 2024 ari melody + + this code is provided AS-IS, WITHOUT ANY WARRANTY, to be + freely redistributed and/or modified as you please, however + retaining this license in any redistribution. + + please use this flag to link to an LGBTQI+-supporting page + of your choosing! + + web: https://arimelody.me + source: https://git.arimelody.me/ari/prideflag +--> + +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"> + <path id="red" d="M120,80 L100,100 L120,120 Z" style="fill:#d20605"/> + <path id="orange" d="M120,80 V40 L80,80 L100,100 Z" style="fill:#ef9c00"/> + <path id="yellow" d="M120,40 V0 L60,60 L80,80 Z" style="fill:#e5fe02"/> + <path id="green" d="M120,0 H80 L40,40 L60,60 Z" style="fill:#09be01"/> + <path id="blue" d="M80,0 H40 L20,20 L40,40 Z" style="fill:#081a9a"/> + <path id="purple" d="M40,0 H0 L20,20 Z" style="fill:#76008a"/> + + <rect id="black" x="60" width="60" height="60" style="fill:#010101"/> + <rect id="brown" x="70" width="50" height="50" style="fill:#603814"/> + <rect id="lightblue" x="80" width="40" height="40" style="fill:#73d6ed"/> + <rect id="pink" x="90" width="30" height="30" style="fill:#ffafc8"/> + <rect id="white" x="100" width="20" height="20" style="fill:#fff"/> + + <rect id="intyellow" x="110" width="10" height="10" style="fill:#fed800"/> + <circle id="intpurple" cx="120" cy="0" r="5" stroke="#7601ad" stroke-width="2" fill="none"/> +</svg> diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php index c5d249d..43e4b6b 100644 --- a/resources/views/components/layout.blade.php +++ b/resources/views/components/layout.blade.php @@ -20,6 +20,9 @@ <meta property="og:description" content="{{ $cardDescription ?? "" }}"> </head> <body> + <a href="https://git.arimelody.me/ari/prideflag" target="_blank" id="prideflag"> + <img src="{{ asset('/images/progress.svg') }}" width="120" height="120" alt="progressive pride flag"> + </a> <div class="page-container"> <div id="header"> <header> |