summaryrefslogtreecommitdiff
path: root/haunt/static/css/style.css
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2021-12-14 21:02:40 -0500
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2021-12-14 21:04:13 -0500
commit648ab07ee7b500935ba3673d897b9bddbc610934 (patch)
tree451d0ce2d355fce76f55a377fa22e3a3a8657a97 /haunt/static/css/style.css
parent90ad4c0e9b4d08d46a56130c44f4c04862bb0c06 (diff)
pages: Update biography front-matter and project listing
Diffstat (limited to 'haunt/static/css/style.css')
-rw-r--r--haunt/static/css/style.css76
1 files changed, 63 insertions, 13 deletions
diff --git a/haunt/static/css/style.css b/haunt/static/css/style.css
index a198a89..145c315 100644
--- a/haunt/static/css/style.css
+++ b/haunt/static/css/style.css
@@ -258,19 +258,6 @@ tr:nth-child(even) {
background-color: #f2f2f2;
}
-
-td:nth-child(1) {
- width: 20%;
-}
-
-td:nth-child(2) {
- width: 10%;
-}
-
-td:nth-child(3) {
- width: 70%;
-}
-
/* Buttons. */
button {
@@ -314,3 +301,66 @@ button {
.spoiler:hover {
background-color: #f6f5f4;
}
+
+/* Styles specific to the "about" page. */
+
+.project-section td:nth-child(1) {
+ width: 15%;
+}
+
+.project-section td:nth-child(2) {
+ width: 60px;
+}
+
+.project-section td:nth-child(3) {
+ width: 80px;
+}
+
+.project-section td:nth-child(4) {
+ width: 15%;
+}
+
+.lang-c {
+ background-color: #555555;
+ color: #fff;
+}
+
+.lang-cpp {
+ background-color: #f34b7d;
+ color: #fff;
+}
+
+.lang-python {
+ background-color: #3572a5;
+ color: #ffdb4e;
+}
+
+.lang-rust {
+ background-color: #dea584;
+ color: #fff;
+}
+
+.lang-kotlin {
+ background-color: #f89917;
+ color: #fff;
+}
+
+.lang-fennel {
+ background-color: #2ca02c;
+ color: #fff;
+}
+
+.lang-elisp {
+ background-color: #c065db;
+ color: #fff;
+}
+
+.lang-scheme {
+ background-color: #1e4aec;
+ color: #fff;
+}
+
+.lang-ebuild {
+ background-color: #4d4270;
+ color: #fff;
+}