social bookmarking for atproto
1/*
2 * clippr: a social bookmarking service for the AT Protocol
3 * Copyright (c) 2025 clippr contributors.
4 * SPDX-License-Identifier: AGPL-3.0-only
5 */
6
7body {
8 text-align: left;
9 font-family: Arial, sans-serif;
10 background-color: #fff;
11}
12
13#container {
14 background-color: #fff;
15 padding: 1rem;
16 border-radius: 0.5rem;
17 width: 30%;
18 margin: auto;
19}
20
21header {
22 border-bottom: 1px dotted black;
23 text-align: left;
24
25 p {
26 margin-top: 0;
27 font-weight: bold;
28 }
29}
30
31main {
32 margin: 1rem;
33}
34
35a {
36 text-decoration: none;
37}
38
39a:hover {
40 font-style: italic;
41 font-weight: bold;
42}
43
44code {
45 background-color: #111;
46 color: #eee;
47 padding: 0.2rem;
48 border-radius: 0.2rem;
49 font-family: monospace;
50 white-space: nowrap;
51}
52
53footer {
54 border-top: 1px dotted black;
55 text-align: center;
56}