| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- :root {
- background-color: white;
- color: black;
- }
- :root, input, textarea {
- font-family: Garamond, Times New Roman, serif;
- line-height: 1.25;
- font-size: 12pt;
- }
- .error {
- padding: 1em;
- border: 1px solid #400;
- background-color: #fcc;
- color: #d00;
- font-weight: bold;
- margin-bottom: 1em;
- }
- .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;
- }
- }
|