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 + .post,
13.notification + .notification {
14 margin-top: 6px;
15}
16
17pre {
18 white-space: pre-wrap;
19}
20
21/*
22 * some themes make input fields display: block, which overrides my hidden
23 * attribute. to resolve that, i will just override the override.
24 */
25input[hidden] {
26 display: none !important;
27}