Compare commits
No commits in common. "47b979cab4908a34bd9249c9e15ad09cc9f5e297" and "c213816f3372c4c379cb99658ea4fbd9a5f67571" have entirely different histories.
47b979cab4
...
c213816f33
27
.gitignore
vendored
27
.gitignore
vendored
@ -1,7 +1,22 @@
|
||||
public/
|
||||
resources/
|
||||
deploy
|
||||
.hugo_build.lock
|
||||
.direnv/
|
||||
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
|
||||
*.swp
|
||||
.direnv/
|
||||
|
4
content/.gitignore
vendored
Normal file
4
content/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
public/
|
||||
resources/
|
||||
deploy
|
||||
.hugo_build.lock
|
@ -1,5 +1,4 @@
|
||||
+++
|
||||
title = 'ChaosZone'
|
||||
date = 2025-06-01T22:39:26+02:00
|
||||
draft = true
|
||||
+++
|
||||
|
@ -1,7 +1,5 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
BIN
themes/zone/static/css/.style.css.swp
Normal file
BIN
themes/zone/static/css/.style.css.swp
Normal file
Binary file not shown.
@ -18,27 +18,12 @@ html {
|
||||
background-color: var(--bg-color);
|
||||
color: var(--font-color);
|
||||
font-family: var(--main-font);
|
||||
min-height: 100vh;
|
||||
font-size: 20pt;
|
||||
}
|
||||
|
||||
body {
|
||||
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);
|
||||
margin: 3em;
|
||||
}
|
||||
|
||||
nav a, nav a:visited {
|
||||
@ -58,22 +43,16 @@ nav li {
|
||||
.logo {
|
||||
display: inline-block;
|
||||
padding: 0.5em;
|
||||
border-radius: 50%;
|
||||
border-radius: 23px;
|
||||
background-color: var(--hl-color);
|
||||
}
|
||||
|
||||
.logo img {
|
||||
max-width: 5em;
|
||||
max-width: 8em;
|
||||
}
|
||||
|
||||
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