Compare commits

..

No commits in common. "master" and "v2026.06.02" have entirely different histories.

3 changed files with 13 additions and 13 deletions

View file

@ -5,7 +5,7 @@
return [ return [
'name' => env('APP_NAME', 'wah.moe'), 'name' => env('APP_NAME', 'wah.moe'),
'version' => '2026.06.02-patch0', 'version' => '2026.06.02',
'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

@ -1,13 +1,3 @@
* { * {
font-family: "Comic Sans MS", cursive ; 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

@ -2,6 +2,11 @@ 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,
@ -44,4 +49,9 @@ 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) }
}