Update logo

This commit is contained in:
floppydiskette 2024-12-12 00:45:06 +00:00
parent 1b51e2b0e0
commit bb47f99f13
Signed by: fwoppydwisk
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
8 changed files with 26 additions and 6 deletions

View file

@ -92,6 +92,21 @@ div.page-container > div:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
div#header {
display: grid;
grid-template-columns: 66px 1fr;
grid-template-rows: 1fr;
grid-column-gap: 15px;
grid-row-gap: 0px;
align-items: center;
}
div#header img {
filter: drop-shadow(2px 2px hsl(0, 0%, 66%));
margin-right: 10px;
image-rendering: pixelated;
}
div#header h1 { div#header h1 {
margin: 0; margin: 0;
font-style: italic; font-style: italic;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 777 B

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 536 B

After

Width:  |  Height:  |  Size: 562 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 591 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
public/images/logo-old.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -13,17 +13,22 @@
{!! (intval(date('n')) == 12) ? '<script src="/js/christmas/snowstorm.js"></script>' : '' !!} {!! (intval(date('n')) == 12) ? '<script src="/js/christmas/snowstorm.js"></script>' : '' !!}
<!-- Page-specific --> <!-- Page-specific -->
<meta property="og:title" content="wah.moe | {{ $title }}"> <meta property="og:title" content="wah! (dot moe) - {{ $title }}">
<meta property="og:image" content="/favicon-128x128.png"> <meta property="og:image" content="/favicon-128x128.png">
</head> </head>
<body> <body>
<div class="page-container"> <div class="page-container">
<div id="header"> <div id="header">
<h1>wah!</h1> <div>
<p> <img src="{{ asset('/images/logo.png') }}" width="65">
(dot moe) </div>
</p> <div>
<x-navigation></x-navigation> <h1>wah!</h1>
<p>
(dot moe)
</p>
<x-navigation></x-navigation>
</div>
</div> </div>
<div id="content"> <div id="content">
{{ $slot }} {{ $slot }}