summaryrefslogtreecommitdiff
path: root/www/css
diff options
context:
space:
mode:
authorBlendoit <blendoit@gmail.com>2021-02-09 21:37:26 -0800
committerBlendoit <blendoit@gmail.com>2021-02-09 21:37:26 -0800
commit2e028edae883e9dc8edef89d3e901f3933fd32fc (patch)
tree87b2561be4e6f8d23141420f9416476e8afe3e75 /www/css
parent06b1842c3b3857a4d405bba479076a48bc14d3f5 (diff)
wiki
Diffstat (limited to 'www/css')
-rw-r--r--www/css/base.css42
-rw-r--r--www/css/index.css15
-rw-r--r--www/css/navbar.css29
3 files changed, 86 insertions, 0 deletions
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;
+}
Copyright 2019--2024 Marius PETER