From 2e028edae883e9dc8edef89d3e901f3933fd32fc Mon Sep 17 00:00:00 2001 From: Blendoit Date: Tue, 9 Feb 2021 21:37:26 -0800 Subject: wiki --- www/about.org | 10 ++++++++++ www/css/base.css | 42 ++++++++++++++++++++++++++++++++++++++++++ www/css/index.css | 15 +++++++++++++++ www/css/navbar.css | 29 +++++++++++++++++++++++++++++ www/img/space.jpg | Bin 0 -> 36815 bytes www/sd-setup.org | 5 +++++ 6 files changed, 101 insertions(+) create mode 100644 www/about.org create mode 100644 www/css/base.css create mode 100644 www/css/index.css create mode 100644 www/css/navbar.css create mode 100644 www/img/space.jpg create mode 100644 www/sd-setup.org (limited to 'www') diff --git a/www/about.org b/www/about.org new file mode 100644 index 0000000..c2a150c --- /dev/null +++ b/www/about.org @@ -0,0 +1,10 @@ +# -*- mode: org; -*- + +#+TITLE: Smart Documents +#+AUTHOR: Marius Peter +#+DATE: <2021-02-09 Tue> + +#+SETUPFILE: ~/.emacs.d/www/sd-setup.org +#+INCLUDE: ./topbar.html export html + +Contact me at [[https://t.me/Blendoit][t.me/Blendoit]] or at [[mailto:smart-documents@tuta.io][smart-documents@tuta.io]]. diff --git a/www/css/base.css b/www/css/base.css new file mode 100644 index 0000000..fa525e8 --- /dev/null +++ b/www/css/base.css @@ -0,0 +1,42 @@ +:root { + --primary-color: #333333; + --secondary-color: #FFFFFF; + --home: #c8c8c8; + --yes: #5cff5c; + --no: #ff5c5c; + font-size: 18; + --fast-speed: 0.2s; + --med-speed: 0.4s; + --slow-speed: 1s; +} + +code { + font-family: 'Hack', sans-serif; +} + +body { + font-family: 'Jost*', sans-serif; + line-height: 1.2; + margin: 0; + padding: 0; + background-color: var(--primary-color); + color: var(--secondary-color); + filter: blur(0px); +} + +.outline-2 { + filter: blur(4px); + transition: 0.3s; +} +.outline-2:hover { + filter: blur(0px); + transition: 0.3s; +} + +p { + font-family: 'Public Sans', sans-serif; +} + +a { + color: gray; +} diff --git a/www/css/index.css b/www/css/index.css new file mode 100644 index 0000000..e79ccd2 --- /dev/null +++ b/www/css/index.css @@ -0,0 +1,15 @@ +.title { + background: no-repeat center/100% url("./space.jpg"); + position: relative; + bottom: 0; + filter: blur(4px); + transition: 0.3s; +} +.title:hover { + line-height: 2; + background: no-repeat center/100% url("./space.jpg"); + position: relative; + bottom: 0; + filter: blur(0px); + transition: 0.5s; +} diff --git a/www/css/navbar.css b/www/css/navbar.css new file mode 100644 index 0000000..23583b7 --- /dev/null +++ b/www/css/navbar.css @@ -0,0 +1,29 @@ +/* Add a black background color to the top navigation */ +nav { + display: block; + background-color: #333; + position: relative; + z-index: 10; +} + +/* Style the links inside the navigation bar */ +nav a { + float: left; + color: #f2f2f2; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; +} + +/* Change the color of links on hover */ +nav a:hover { + background-color: #ddd; + color: black; +} + +/* Add a color to the active/current link */ +nav a.active { + background-color: #4CAF50; + color: white; +} diff --git a/www/img/space.jpg b/www/img/space.jpg new file mode 100644 index 0000000..fa18bad Binary files /dev/null and b/www/img/space.jpg differ diff --git a/www/sd-setup.org b/www/sd-setup.org new file mode 100644 index 0000000..4f503d4 --- /dev/null +++ b/www/sd-setup.org @@ -0,0 +1,5 @@ +# Inhibit certain elements exported with Org by default. +#+OPTIONS: toc:nil html-style:nil num:nil title:nil + +#+HTML_HEAD: +#+HTML_HEAD: -- cgit v1.2.3