Compare commits
5 Commits
c213816f33
...
47b979cab4
Author | SHA1 | Date | |
---|---|---|---|
47b979cab4 | |||
d973024c70 | |||
71b821bd83 | |||
fb075bcd3d | |||
1148310eea |
27
.gitignore
vendored
27
.gitignore
vendored
@ -1,22 +1,7 @@
|
||||
dist/
|
||||
dist-newstyle/
|
||||
cabal-dev
|
||||
*.o
|
||||
*.hi
|
||||
*.chi
|
||||
*.chs.h
|
||||
*.dyn_o
|
||||
*.dyn_hi
|
||||
.hpc
|
||||
.hsenv
|
||||
.cabal-sandbox/
|
||||
cabal.sandbox.config
|
||||
*.prof
|
||||
*.aux
|
||||
*.hp
|
||||
.stack-work/
|
||||
_cache/
|
||||
_site/
|
||||
drafts/
|
||||
.envrc
|
||||
public/
|
||||
resources/
|
||||
deploy
|
||||
.hugo_build.lock
|
||||
.direnv/
|
||||
.envrc
|
||||
*.swp
|
||||
|
4
content/.gitignore
vendored
4
content/.gitignore
vendored
@ -1,4 +0,0 @@
|
||||
public/
|
||||
resources/
|
||||
deploy
|
||||
.hugo_build.lock
|
@ -1,4 +1,5 @@
|
||||
+++
|
||||
title = 'ChaosZone'
|
||||
date = 2025-06-01T22:39:26+02:00
|
||||
draft = true
|
||||
+++
|
||||
|
@ -1,5 +1,7 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
Binary file not shown.
@ -18,12 +18,27 @@ html {
|
||||
background-color: var(--bg-color);
|
||||
color: var(--font-color);
|
||||
font-family: var(--main-font);
|
||||
min-height: 100vh;
|
||||
font-size: 20pt;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 3em;
|
||||
padding: 3em 3em 0;
|
||||
min-height: 100vh;
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
grid-template-areas:
|
||||
"navigation . main"
|
||||
"footer footer footer";
|
||||
grid-template-columns: 225px 25px auto;
|
||||
grid-template-rows: auto 50px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
header {
|
||||
grid-area: navigation;
|
||||
justify-self: stretch;
|
||||
padding-right: 25px;
|
||||
border-right: 5px solid var(--hl-color);
|
||||
}
|
||||
|
||||
nav a, nav a:visited {
|
||||
@ -43,16 +58,22 @@ nav li {
|
||||
.logo {
|
||||
display: inline-block;
|
||||
padding: 0.5em;
|
||||
border-radius: 23px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--hl-color);
|
||||
}
|
||||
|
||||
.logo img {
|
||||
max-width: 8em;
|
||||
max-width: 5em;
|
||||
}
|
||||
|
||||
main {
|
||||
grid-area: main;
|
||||
justify-self: stretch;
|
||||
padding: 2em;
|
||||
border-radius: 23px;
|
||||
background-color: var(--box-bg);
|
||||
}
|
||||
|
||||
footer {
|
||||
grid-area: footer;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user