41 lines
637 B
CSS
41 lines
637 B
CSS
/*
|
|
* SPDX-FileCopyrightText: 2021-2024 Simon Bruder <simon@sbruder.de>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
body {
|
|
font-family: "PT Sans", "Helvetica", "Helvetica Neue", "Roboto", "Arimo", "Arial", sans-serif;
|
|
margin: 0px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
|
|
min-height: 100vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
tr td:first-child::after {
|
|
content: ":";
|
|
}
|
|
|
|
.links a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.fineprint {
|
|
font-size: .75rem;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.forbiddenword.processed {
|
|
font-family: "Comic Sans MS", cursive;
|
|
}
|