Compare commits

...

3 commits

Author SHA1 Message Date
9f10cbb6cc
woops 2026-06-02 13:43:28 +01:00
2de9378b63
aaa 2026-06-02 13:42:19 +01:00
9d0ae7ad55
dear god thats an awful font 2026-06-02 13:37:10 +01:00
4 changed files with 16 additions and 17 deletions

View file

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

View file

@ -0,0 +1,13 @@
* {
font-family: "Comic Sans MS", cursive ;
}
button:hover,
footer img:hover {
animation: rotater 2s linear infinite;
}
@keyframes rotater {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg) }
}

View file

@ -1,16 +1,7 @@
* {
font-family: "Comic Sans MS", cursive ;
}
body { body {
background: url('/images/roscoe_tile_rainbow.jpg'); background: url('/images/roscoe_tile_rainbow.jpg');
} }
button:hover,
footer img:hover {
animation: rotater 2s linear infinite;
}
div.page-container, div.page-container,
div.wah, div.wah,
table.music-top10, table.music-top10,
@ -53,9 +44,4 @@ hr {
border-bottom: none; border-bottom: none;
border-right: none; border-right: none;
border-left: none; border-left: none;
} }
@keyframes rotater {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg) }
}

View file

@ -13,7 +13,7 @@
<link rel="icon" type="image/png" href="{{ asset('/favicon-16x16.png') }}" sizes="16x16"/> <link rel="icon" type="image/png" href="{{ asset('/favicon-16x16.png') }}" sizes="16x16"/>
@if ($event == 'christmas')<script src="{{ asset('/js/christmas/snowstorm.js') }}"></script>@endif @if ($event == 'christmas')<script src="{{ asset('/js/christmas/snowstorm.js') }}"></script>@endif
@if ($event == 'april-fools' || $event == 'pride')<link rel="stylesheet" href="{{ asset('/css/alternate/rainbow.css') }}">@endif @if ($event == 'april-fools' || $event == 'pride')<link rel="stylesheet" href="{{ asset('/css/alternate/rainbow.css') }}">@endif
@if ($event == 'april-fools')<link rel="stylesheet" href="{{ asset('/css/alternate/aprilfools.css') }}">@endif
<!-- Page-specific --> <!-- Page-specific -->
<meta property="og:title" content="wah! (dot moe) - {{ $title }}"> <meta property="og:title" content="wah! (dot moe) - {{ $title }}">
<meta property="og:image" content="{{ $cardImage ?? "/favicon-128x128.png" }}"> <meta property="og:image" content="{{ $cardImage ?? "/favicon-128x128.png" }}">