a mini social media app for small communities
1.post {
2 border: 2px solid;
3 padding: 8px;
4}
5
6.post p {
7 margin: 0;
8}
9
10.post + .post {
11 margin-top: 6px;
12}
13
14pre {
15 white-space: pre-wrap;
16}
17
18/*
19 * some themes make input fields display: block, which overrides my hidden
20 * attribute. to resolve that, i will just override the override.
21 */
22input[hidden] {
23 display: none !important;
24}