summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/about.org10
-rw-r--r--www/css/base.css42
-rw-r--r--www/css/index.css15
-rw-r--r--www/css/navbar.css29
-rw-r--r--www/img/space.jpgbin0 -> 36815 bytes
-rw-r--r--www/sd-setup.org5
6 files changed, 101 insertions, 0 deletions
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
--- /dev/null
+++ b/www/img/space.jpg
Binary files 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: <link rel="stylesheet" type="text/css" href="./css/base.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/navbar.css"/>
Copyright 2019--2024 Marius PETER