mirror of
https://github.com/glassflame/glassflame.github.io.git
synced 2024-11-22 16:14:26 +00:00
52 lines
938 B
CSS
52 lines
938 B
CSS
:root {
|
|
--color-background: #ffffff;
|
|
--color-foreground: #000000;
|
|
--color-accent: initial;
|
|
|
|
--color-gray: #7E7E7E;
|
|
--color-red: #FB464C;
|
|
--color-orange: #E9973F;
|
|
--color-yellow: #E0DE71;
|
|
--color-green: #44CF6E;
|
|
--color-blue: #53DFDD;
|
|
--color-purple: #A882FF;
|
|
|
|
--color-node: var(--color-gray);
|
|
--node-group-border-width: 2px;
|
|
--node-file-border-width: 2px;
|
|
--edge-width: 2px;
|
|
--font-text: sans-serif;
|
|
--font-mono: monospace;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
width: max-content;
|
|
min-width: 100svw;
|
|
height: max-content;
|
|
|
|
background-color: var(--color-background);
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
body > h1 {
|
|
text-align: center;
|
|
font-size: 4em;
|
|
}
|
|
|
|
* {
|
|
font-family: var(--font-text);
|
|
}
|
|
|
|
code {
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
a {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
svg line {
|
|
stroke: var(--color-node);
|
|
stroke-width: var(--edge-width);
|
|
}
|