themes/nicksphere.css (view raw)
1/*
2 nicksphere.com-gmi Generates a Gemini capsule from existing files
3 Copyright (C) 2021 Nicholas Johnson
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>.
17*/
18
19body {
20 background-color: #000;
21 color: white;
22 padding: 30px;
23 font-family: monospace;
24 font-size: 16px;
25 line-height: 22px;
26 max-width: 960px; /* mobile-first */
27 margin: 0 auto; /* remove default styling */
28}
29
30h1 { color: red; }
31h2 { color: #66ff00; }
32h3 { color: #FF007F; }
33
34h1:before { content: "# " }
35h2:before { content: "## " }
36h3:before { content: "### " }
37
38h1, h2, h3 {
39 font-size: 20px;
40}
41
42a:before { content: "=> "; }
43
44a {
45 color: #004EFF;
46 text-decoration: none; /* remove default styling */
47}
48
49a:hover {
50 color: black;
51 background-color: #004EFF;
52}
53
54pre {
55 overflow: auto;
56}
57
58p {
59 overflow-wrap: break-word;
60}