diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-19 14:57:39 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-19 14:58:12 +0200 |
commit | 5aff968bf932f201b1103f2f81255ab58f115241 (patch) | |
tree | 43615a3834d41e6acda48325163c280fb8e54d63 /src | |
parent | b2f4cb04bfb85741bcbc754efd1027684d7577e3 (diff) | |
download | sousleciel.lol-5aff968bf932f201b1103f2f81255ab58f115241.tar.gz |
feat: scaffold website skeleton
Diffstat (limited to 'src')
-rw-r--r-- | src/index.md | 21 | ||||
-rw-r--r-- | src/styles/main.css | 38 |
2 files changed, 59 insertions, 0 deletions
diff --git a/src/index.md b/src/index.md new file mode 100644 index 0000000..2ca0888 --- /dev/null +++ b/src/index.md @@ -0,0 +1,21 @@ +--- +show_title: false +--- + +cataphiles, toiturophiles, tractophiles, gtekophiles, amoureux·ses des égouts +et du remblais, curieux·ses, amateur·trices des hauteurs + +- [melpiat.com](https://melpiat.com) +- [rgoncalves.se](https://rgoncalves.se) + +<span></span> + +- [contact@sousleciel.lol](mailto:contact@sousleciel.lol) + +<style> +body > *:not(header) { + padding-left: 1em; + border-left: black dotted .18em; + max-width: 30em; +} +</style> diff --git a/src/styles/main.css b/src/styles/main.css new file mode 100644 index 0000000..489298e --- /dev/null +++ b/src/styles/main.css @@ -0,0 +1,38 @@ +* { + font-family: monospace, monospace; + font-size: 1em; +} + +body { + margin-left: 10vw; + max-width: 96ch; +} + +h1 { + font-size: 2em; + margin-bottom: 30vh; + margin-top: 1em; +} + +h1 > a { + text-decoration-style: wavy; + text-decoration-thickness: 15%; +} + +a, a:hover, a:visited { + color: blue; +} + +ul { + padding-inline-start: 0; +} + +ul li { + display: block; +} + +footer { + color: white; + background-color: black; + margin-top: 4em; +} |