aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcurly <curlybryce@protonmail.com>2023-01-11 12:12:29 -0700
committercurly <curlybryce@protonmail.com>2023-01-11 12:12:29 -0700
commit410f8beb0edc09166be08ec7090842132d3abdec (patch)
tree426ca6727d232c93d2261191f84521b816c98e02 /src
parent4bd45d754821448b37c206544cbbfddf04360988 (diff)
downloadinfernal.garden-410f8beb0edc09166be08ec7090842132d3abdec.tar.gz
infernal.garden-410f8beb0edc09166be08ec7090842132d3abdec.tar.bz2
infernal.garden-410f8beb0edc09166be08ec7090842132d3abdec.zip
refactor colors, added pages
Diffstat (limited to 'src')
-rw-r--r--src/assets/css/main.css18
-rw-r--r--src/index.html2
-rw-r--r--src/projects/index.html28
-rw-r--r--src/services/index.html60
4 files changed, 99 insertions, 9 deletions
diff --git a/src/assets/css/main.css b/src/assets/css/main.css
index a224932..69aa92e 100644
--- a/src/assets/css/main.css
+++ b/src/assets/css/main.css
@@ -8,19 +8,19 @@ html, body {
:root {
- --primary: 238, 238, 238;
- --secondary: 187, 187, 187;
- --tertiary: 153, 153, 153;
- --text-primary: #222;
+ --primary: 252, 237, 237;
+ --secondary: 204, 173, 175;
+ --tertiary: 153, 125, 127;
+ --text-primary: #533;
--text-secondary: #888;
}
@media (prefers-color-scheme: dark) {
:root {
- --primary: 34, 34, 34;
- --secondary: 51, 51, 51;
- --tertiary: 68, 68, 68;
- --text-primary: #ddd;
- --text-secondary: #999;
+ --primary: 71, 15, 23;
+ --secondary: 53, 12, 18;
+ --tertiary: 36, 9, 14;
+ --text-primary: #cdd;
+ --text-secondary: #899;
}
:link {
diff --git a/src/index.html b/src/index.html
index 32049c0..11499de 100644
--- a/src/index.html
+++ b/src/index.html
@@ -24,6 +24,8 @@
</div>
</div>
</div>
+ </section>
+ </article>
:?src/templates/body-bottom.html
</body>
</html> \ No newline at end of file
diff --git a/src/projects/index.html b/src/projects/index.html
new file mode 100644
index 0000000..9d46714
--- /dev/null
+++ b/src/projects/index.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ :!t | Projects:!/t
+ :?src/templates/inner-head.html
+ </head>
+ <body>
+ :?src/templates/nav.html
+ :?src/templates/body-top.html
+ <article>
+ <section id="projects">
+ <br>
+ <div class="card">
+ <div>
+ <span class="card-head">
+ Projects:!refprojects:!/ref
+ </span>
+ <hr>
+ <div class="card-body">
+ <p>
+ A list of current projects.
+ </p>
+ </div>
+ </div>
+ </div>
+ :?src/templates/body-bottom.html
+ </body>
+</html> \ No newline at end of file
diff --git a/src/services/index.html b/src/services/index.html
new file mode 100644
index 0000000..50a21d6
--- /dev/null
+++ b/src/services/index.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ :!t | Services:!/t
+ :?src/templates/inner-head.html
+ </head>
+ <body>
+ :?src/templates/nav.html
+ :?src/templates/body-top.html
+ <article>
+ <section id="services">
+ <br>
+ <div class="card">
+ <div>
+ <span class="card-head">
+ Services:!refservices:!/ref
+ </span>
+ <hr>
+ <div class="card-body">
+ <p>
+ All the services being hosted here.
+ </p>
+ </div>
+ </div>
+ </div>
+ <br>
+ <div class="card">
+ <div>
+ <span class="card-head">
+ Gitea:!refgitea:!/ref
+ </span>
+ <hr>
+ <div class="card-body">
+ <p>
+ A private Gitea server.<br>
+ <a href="https://git.infernal.garden">https://git.infernal.garden</a>
+ </p>
+ </div>
+ </div>
+ </div>
+ <br>
+ <div class="card">
+ <div>
+ <span class="card-head">
+ Akkoma:!refakkoma:!/ref
+ </span>
+ <hr>
+ <div class="card-body">
+ <p>
+ A private Akkoma server.<br>
+ <a href="https://ak.infernal.garden">https://ak.infernal.garden</a>
+ </p>
+ </div>
+ </div>
+ </div>
+ </section>
+ </article>
+ :?src/templates/body-bottom.html
+ </body>
+</html> \ No newline at end of file