added styling to tables

This commit is contained in:
reallyniceusername 2023-06-08 19:00:30 +00:00
parent e184a1aadb
commit 726182667a
1 changed files with 13 additions and 1 deletions

View File

@ -1,7 +1,13 @@
:root{
--fg-color: #f6f6f6;
}
body {
font-family: sans-serif;
color: #f6f6f6;
color: var(--fg-color);
background-color: #010120;
border-color: var(--fg-color);
}
a {
@ -22,3 +28,9 @@ pre.code {
word-wrap: normal;
white-space: pre;
}
table {
border-style: solid;
width: 100%;
text-align: left;
}