aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKaran Jayachandra <me@karanj.com>2026-01-20 18:28:31 +0100
committerKaran Jayachandra <me@karanj.com>2026-01-20 18:28:31 +0100
commit1bef928c8f059f37f6ed955d65044ec1439ff53c (patch)
tree1b81d9a299776d81a178df5db954b14c9dde5576 /static
parentfa8de045384e68b669d379ea21b564ee078dcc71 (diff)
parent3b8c5a556f59b7d078fd275cc7050358d2f71c58 (diff)
Merge branch 'develop' into 'main'
Reordered the content and changed the CSS a bit See merge request KaranJayachandra/karanjayachandra.gitlab.io!5
Diffstat (limited to 'static')
-rw-r--r--static/main.css8
1 files changed, 3 insertions, 5 deletions
diff --git a/static/main.css b/static/main.css
index 6b3569e..bc7f8a1 100644
--- a/static/main.css
+++ b/static/main.css
@@ -1,13 +1,11 @@
:root {
--hue: 0;
- --saturation: 50%;
+ --saturation: 60%;
--text-color: hsl(var(--hue), var(--saturation), 0%);
--bg-color: hsl(var(--hue), var(--saturation), 100%);
--theme-color: hsl(var(--hue), var(--saturation), 50%);
--code-bg-color: hsl(var(--hue), var(--saturation), 90%);
font-family: system-ui;
- font-size: 1.25rem;
- line-height: 1.25;
background-color: var(--bg-color);
color: var(--text-color);
max-width: 800px;
@@ -40,7 +38,7 @@ nav ul, nav ol {
grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
gap: 5%;
}
-nav ul li, nav ol li {
+nav ul li {
background-color: var(--code-bg-color);
font-size: large;
text-align: center;
@@ -48,7 +46,7 @@ nav ul li, nav ol li {
padding-bottom: 3%;
border-radius: 0.5em;
}
-nav ul li a, nav ol li a {
+nav ul a {
text-decoration: none;
}
blockquote {