Update dirlist.css to match site design
This commit is contained in:
parent
290c4c9cd7
commit
1b51e2b0e0
1 changed files with 40 additions and 17 deletions
|
@ -1,40 +1,63 @@
|
||||||
@import "colorschemes/catppuccin-macchiato.css";
|
:root {
|
||||||
|
--background: #f2efbd;
|
||||||
|
--background-dim: hsl(57, 85%, 85%);
|
||||||
|
--foreground: #2a271c;
|
||||||
|
--border-color: #f27405;
|
||||||
|
--border: var(--border-color) 2px solid;
|
||||||
|
--shadow-color: hsla(11, 96%, 43%, 0.4);
|
||||||
|
--shadow: drop-shadow(8px 8px var(--shadow-color));
|
||||||
|
--shadow-small: drop-shadow(3px 3px var(--shadow-color));
|
||||||
|
--links: hsl(183, 93%, 27%);
|
||||||
|
--links-hover: hsl(183, 93%, 15%);
|
||||||
|
--table-header: hsla(11, 96%, 43%, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #99f;
|
color: var(--links);
|
||||||
text-decoration: none;
|
text-decoration: underline dotted;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
color: var(--links-hover);
|
||||||
|
text-decoration: underline solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1#indextitle {
|
h1#indextitle {
|
||||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||||
margin-bottom: 0;
|
Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
|
||||||
|
sans-serif;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr, th, td {
|
tr,
|
||||||
font-family: monospace;
|
th,
|
||||||
font-size: 12pt;
|
td {
|
||||||
padding: 0 5px;
|
font-family: monospace;
|
||||||
|
font-size: 12pt;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr td:nth-child(2) {
|
||||||
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
address {
|
address {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 12pt
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue