[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
wiki
Changed files
www/about.org
@@ -0,0 +1,10 @@
1
Added:
# -*- mode: org; -*-
2
Added:
3
Added:
#+TITLE: Smart Documents
4
Added:
#+AUTHOR: Marius Peter
5
Added:
#+DATE: <2021-02-09 Tue>
6
Added:
7
Added:
#+SETUPFILE: ~/.emacs.d/www/sd-setup.org
8
Added:
#+INCLUDE: ./topbar.html export html
9
Added:
10
Added:
Contact me at [[https://t.me/Blendoit][t.me/Blendoit]] or at [[mailto:smart-documents@tuta.io][smart-documents@tuta.io]].
www/css/base.css
@@ -0,0 +1,42 @@
1
Added:
:root {
2
Added:
--primary-color: #333333;
3
Added:
--secondary-color: #FFFFFF;
4
Added:
--home: #c8c8c8;
5
Added:
--yes: #5cff5c;
6
Added:
--no: #ff5c5c;
7
Added:
font-size: 18;
8
Added:
--fast-speed: 0.2s;
9
Added:
--med-speed: 0.4s;
10
Added:
--slow-speed: 1s;
11
Added:
}
12
Added:
13
Added:
code {
14
Added:
font-family: 'Hack', sans-serif;
15
Added:
}
16
Added:
17
Added:
body {
18
Added:
font-family: 'Jost*', sans-serif;
19
Added:
line-height: 1.2;
20
Added:
margin: 0;
21
Added:
padding: 0;
22
Added:
background-color: var(--primary-color);
23
Added:
color: var(--secondary-color);
24
Added:
filter: blur(0px);
25
Added:
}
26
Added:
27
Added:
.outline-2 {
28
Added:
filter: blur(4px);
29
Added:
transition: 0.3s;
30
Added:
}
31
Added:
.outline-2:hover {
32
Added:
filter: blur(0px);
33
Added:
transition: 0.3s;
34
Added:
}
35
Added:
36
Added:
p {
37
Added:
font-family: 'Public Sans', sans-serif;
38
Added:
}
39
Added:
40
Added:
a {
41
Added:
color: gray;
42
Added:
}
www/css/index.css
@@ -0,0 +1,15 @@
1
Added:
.title {
2
Added:
background: no-repeat center/100% url("./space.jpg");
3
Added:
position: relative;
4
Added:
bottom: 0;
5
Added:
filter: blur(4px);
6
Added:
transition: 0.3s;
7
Added:
}
8
Added:
.title:hover {
9
Added:
line-height: 2;
10
Added:
background: no-repeat center/100% url("./space.jpg");
11
Added:
position: relative;
12
Added:
bottom: 0;
13
Added:
filter: blur(0px);
14
Added:
transition: 0.5s;
15
Added:
}
www/css/navbar.css
@@ -0,0 +1,29 @@
1
Added:
/* Add a black background color to the top navigation */
2
Added:
nav {
3
Added:
display: block;
4
Added:
background-color: #333;
5
Added:
position: relative;
6
Added:
z-index: 10;
7
Added:
}
8
Added:
9
Added:
/* Style the links inside the navigation bar */
10
Added:
nav a {
11
Added:
float: left;
12
Added:
color: #f2f2f2;
13
Added:
text-align: center;
14
Added:
padding: 14px 16px;
15
Added:
text-decoration: none;
16
Added:
font-size: 17px;
17
Added:
}
18
Added:
19
Added:
/* Change the color of links on hover */
20
Added:
nav a:hover {
21
Added:
background-color: #ddd;
22
Added:
color: black;
23
Added:
}
24
Added:
25
Added:
/* Add a color to the active/current link */
26
Added:
nav a.active {
27
Added:
background-color: #4CAF50;
28
Added:
color: white;
29
Added:
}
www/img/space.jpg
Binary files differ
www/sd-setup.org
@@ -0,0 +1,5 @@
1
Added:
# Inhibit certain elements exported with Org by default.
2
Added:
#+OPTIONS: toc:nil html-style:nil num:nil title:nil
3
Added:
4
Added:
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/base.css"/>
5
Added:
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/navbar.css"/>