diff options
author | hellekin <hellekin@cepheide.org> | 2018-06-21 15:53:56 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2018-06-21 15:53:56 +0200 |
commit | a27194d9738d9492dfca42983dcb2d11fb5019ef (patch) | |
tree | 88e04154067aa7c719b6087f3fbc67f81f717ae6 | |
download | hacklab.brussels-a27194d9738d9492dfca42983dcb2d11fb5019ef.tar.gz |
Welcome to hcklabxl
-rw-r--r-- | assets/css/screen.css | 30 | ||||
-rw-r--r-- | index.html | 22 |
2 files changed, 52 insertions, 0 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css new file mode 100644 index 0000000..c2e47ad --- /dev/null +++ b/assets/css/screen.css @@ -0,0 +1,30 @@ +@charset "UTF-8"; + +html { + font-family: Hack, "Source Code Pro", "DejaVu Sans Mono", monospace; +} + +body { + position: absolute; + top: 0; + left: 0; + right: 0; + margin: 0; + width: 100%; +} + +header h1 { + text-align: center; +} + +main { + margin: 0 auto; + max-width: 42rem; +} + +aside { + margin: 0 auto; + max-width: 42rem; +} + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..0bb2144 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <title> P.S.: HCKLABXL </title> + <link rel="stylesheet" href="assets/css/screen.css"> + </head> + <body> + <header> + <h1>HCKLABXL</h1> + </header> + <main> + </main> + <aside> + <address> + Avenue Princesse Elisabeth 46 + 1030 Schaerbeek + </address> + <p><a href="https://ps.zoethical.com/c/ps/hcklabxl">forum</a></p> + </aside> + </body> +</html> |