modified: gitweb-danixland/gitweb.css
authordanix <danix@danix.xyz>
Sun, 26 Feb 2023 05:52:01 +0000 (06:52 +0100)
committerdanix <danix@danix.xyz>
Sun, 26 Feb 2023 05:52:01 +0000 (06:52 +0100)
modified:   header.html

gitweb-danixland/gitweb.css
header.html

index 7605ef2..543b37b 100644 (file)
@@ -49,6 +49,7 @@ a { outline: none; }
   --fg: #393E46;
   --link: #CF4DCE;
   --border: 34,40,49,0.035;
+  --accent: #FD7014;
 }
 @media screen and (prefers-color-scheme: dark) {
   :root {
@@ -780,3 +781,19 @@ td.pre, div.pre, div.diff {
 .kwc    { color:#d4663d; }
 .kwd    { color:#2928ff; }
 
+/*
+ * Styling for my custom added sections
+ */
+
+/* Header */
+div.site-header {
+  background-color: var(--bg-alt);
+  color: var(--fg);
+}
+div.site-header h1 {
+  text-transform: uppercase;
+}
+div.site-header h1 span.evident {
+  background-color: var(--accent);
+  color: var(--bg);
+}
index 5d923cf..1706555 100644 (file)
@@ -1,3 +1,3 @@
-<h1>
-       danix's git repository
-</h1>
\ No newline at end of file
+<div class="site-header">
+       <h1><span class="evident">danix</span>'s git repository</h1>
+</div>