Merge pull request 'Make coloring and global formatting changes' (#2) from recolor into master

Reviewed-on: #2
This commit is contained in:
Jonas Tobias Hopusch 2021-09-27 13:47:12 +02:00
commit c33f1fb9e3
Failed to generate hash of commit
1 changed files with 3 additions and 18 deletions

View File

@ -27,17 +27,12 @@ footer {
display: flex;
flex-wrap: wrap;
flex-direction: row;
border: 2px solid white;
border-top: none;
border-left: none;
text-align: center;
gap: max(1px, 0.1rem);
}
.globalnav-element {
display: block;
border: 2px solid white;
border-right: none;
border-bottom: none;
background-color: #ddd;
text-align: center;
flex-basis: 0;
@ -99,7 +94,7 @@ table {
display: block;
border-collapse: collapse;
margin: 1rem auto;
width: fit-content;
width: max-content;
max-width: 100%;
overflow-y: auto;
}
@ -119,17 +114,12 @@ td, th {
@media (prefers-color-scheme: dark) {
html {
background-color: black;
background-color: #111;
color: white;
}
.globalnav {
border-color: black;
}
.globalnav-element {
background-color: #222;
border-color: black;
}
code {
@ -151,12 +141,7 @@ td, th {
color: black;
}
.globalnav {
border-color: white;
}
.globalnav-element {
border-color: white;
background-color: #ddd;
}