| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- :root {
- background-color: white;
- color: black;
- }
- :root, input, textarea {
- font-family: Garamond, Times New Roman, serif;
- line-height: 1.25;
- font-size: 12pt;
- }
- .error {
- color: #d00;
- font-weight: bold;
- }
- .post {
- margin-top: 0.5em;
- margin-bottom: 1em;
- }
- .post p {
- margin: 0 0 1em 0;
- }
- .post p:last-child {
- margin: 0;
- }
- .post-date {
- font-size: 80%;
- color: #888;
- margin-top: 0.5em;
- }
- .content {
- max-width: 66ch;
- margin-left: auto;
- margin-right: auto;
- padding: 0.25em;
- }
- .important {
- padding: 1em;
- border: 1px solid #886;
- background-color: #ffc;
- color: black;
- margin-bottom: 1em;
- }
- textarea {
- width: 100%;
- height: 8em;
- font-family: inherit;
- margin: 0;
- }
- input[type="submit"] {
- margin-top: 1em;
- }
- @media(prefers-color-scheme: dark) {
- :root, textarea, input, select {
- background-color: #222;
- color: white;
- }
- }
- @media screen and (max-width: 450px) {
- :root {
- font-size: 16pt;
- }
- }
|