a mini social media app for small communities
1.post,
2.notification {
3 border: 2px solid;
4 padding: 8px;
5}
6
7.post > p,
8.notification > p {
9 margin: 0;
10}
11
12.post > pre,
13.notification > pre {
14 margin: 0;
15 display: inline;
16}
17
18.post + .post,
19.notification + .notification {
20 margin-top: 6px;
21}
22
23pre {
24 white-space: pre-wrap;
25}
26
27span.nsfw-indicator {
28 border: 2px solid red;
29 border-radius: 2px;
30 padding-left: 4px;
31 padding-right: 4px;
32 margin-left: 6px;
33}
34
35/*
36 * some themes make input fields display: block, which overrides my hidden
37 * attribute. to resolve that, i will just override the override.
38 */
39input[hidden] {
40 display: none !important;
41}