oidc stuff

This commit is contained in:
nora 2025-07-13 15:37:29 +02:00
parent 4d7a2be572
commit 30c49c3795
12 changed files with 538 additions and 6 deletions

View file

@ -3,6 +3,10 @@ body {
width: 100%;
}
html {
font-family: sans-serif;
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(41, 41, 41);
@ -53,3 +57,17 @@ form:not(.fake-form) {
.fake-form {
display: inline-block;
}
table {
th {
text-align: left;
}
th, td {
padding-bottom: 10px;
}
:is(td, th):not(:last-child) {
padding-right: 10px;
}
}