Compare commits
2 commits
1b51e2b0e0
...
289a41638c
Author | SHA1 | Date | |
---|---|---|---|
289a41638c | |||
bb47f99f13 |
|
@ -92,6 +92,21 @@ div.page-container > div:last-child {
|
|||
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 {
|
||||
margin: 0;
|
||||
font-style: italic;
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
* { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }
|
||||
html { color-scheme: dark; }
|
||||
body { color: #cad3f5; background-color: #181926; }
|
||||
html { color-scheme: light; }
|
||||
body { color: #2a271c; background-color: #f2efbd; font-family: serif; }
|
||||
h1, h2, h4, ul, p { margin: 0; }
|
||||
h1 { font-weight: normal; }
|
||||
h4 { margin-bottom: 5px; }
|
||||
ul { padding: 5px 30px; }
|
||||
a { color: #8aadf4; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
a { color: hsl(183, 93%, 27%); text-decoration: underline dotted; }
|
||||
a:hover { color: hsl(183, 93%, 15%); text-decoration: underline solid; }
|
||||
code { font-family: monospace; }
|
||||
code.addr { font-size: 24px; }
|
||||
table { border: 1px solid #cad3f5; }
|
||||
table { border: #f27405 2px solid; background-color: #f2efbd; filter: drop-shadow(3px 3px hsla(11, 96%, 43%, 0.4)); }
|
||||
img { border: #f27405 2px solid; filter: drop-shadow(3px 3px hsla(11, 96%, 43%, 0.4)); }
|
||||
hr { border: none; border-bottom: 2px solid #f27405; }
|
||||
|
|
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 536 B After Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
BIN
public/images/logo-old.png
Normal file
After Width: | Height: | Size: 878 B |
Before Width: | Height: | Size: 878 B After Width: | Height: | Size: 22 KiB |
|
@ -13,17 +13,22 @@
|
|||
{!! (intval(date('n')) == 12) ? '<script src="/js/christmas/snowstorm.js"></script>' : '' !!}
|
||||
|
||||
<!-- 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">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-container">
|
||||
<div id="header">
|
||||
<h1>wah!</h1>
|
||||
<p>
|
||||
(dot moe)
|
||||
</p>
|
||||
<x-navigation></x-navigation>
|
||||
<div>
|
||||
<img src="{{ asset('/images/logo.png') }}" width="65">
|
||||
</div>
|
||||
<div>
|
||||
<h1>wah!</h1>
|
||||
<p>
|
||||
(dot moe)
|
||||
</p>
|
||||
<x-navigation></x-navigation>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
{{ $slot }}
|
||||
|
|