commit 6456ee83760ec3987b37cd356b2e08e94d258c87
parent 275dc867114050d6ce82eec2d7fef6d1e58d38b9
Author: hhvn <dev@hhvn.uk>
Date: Sun, 20 Nov 2022 12:09:37 +0000
Improve styling of stagit repos
Diffstat:
1 file changed, 23 insertions(+), 6 deletions(-)
diff --git a/index.css b/index.css
@@ -1,3 +1,7 @@
+:root {
+ color-scheme: dark;
+}
+
html {
background-color: #050a10;
}
@@ -9,20 +13,34 @@ body {
margin: 0 auto;
}
-table {
+table.log {
width: 80vw;
}
+table#branches > * > tr > td,
+table#files > * > tr > td,
+table#index > * > tr > td {
+ padding-right: 10px;
+}
+
hr {
border: 1px #557766 solid;
}
a {
- color: #22bbff;
+ color: #0566bb;
text-decoration: none;
}
-img[src="logo.png"] {
+a.d {
+ color: #90222b;
+}
+
+a.i {
+ color: #00aa00;
+}
+
+img[src="logo.png"], img[src="../logo.png"] {
display: none;
}
@@ -30,9 +48,8 @@ td:first-child {
white-space: nowrap;
}
-td:nth-child(2):has(> a) {
- /* float: left; */
- color: red;
+td:nth-child(3) {
+ white-space: nowrap;
}
a:hover {