feat: add basic overview page

This commit is contained in:
Mathias Schopmans
2024-02-19 11:15:19 +01:00
committed by Mathias Schopmans
parent 38a59b029b
commit 1f3e1045c3
14 changed files with 249 additions and 8 deletions

View File

@@ -18,6 +18,7 @@
* {
box-sizing: border-box;
outline-color: var(--highlight);
padding: 0;
margin: 0;
}
@@ -88,3 +89,22 @@ ol {
padding-left: 16px;
margin-bottom: 1em;
}
input {
background: var(--foreground);
color: var(--background);
border: 1px solid transparent;
padding: 10px 12px;
border-radius: 6px;
width: 100%;
font-size: 16px;
&:focus {
outline: none;
border-color: var(--highlight);
}
}
input::-webkit-search-cancel-button {
display: none;
}