templates/static/style.css (view raw)
1main {
2 max-width: 70ch;
3 padding: 2ch;
4 margin: auto;
5 font-family: "Roboto", Helvetica, Arial, Sans-serif;
6 word-wrap: break-word;
7 background-color: white;
8 line-height: 1.5;
9}
10
11a:visited {
12 color:blue
13}
14
15@media (prefers-color-scheme: dark) {
16 body, main { background: #1b262c; color: white; }
17 a { color: #21e6c1 }
18 a:visited { color: #21e6c1 }
19}
20
21h1, h2, h3, h4, h5, h6{
22 margin-top:0;
23 margin-bottom:.2em;
24}
25
26.footer {
27 font-style: italic;
28 color: grey;
29 font-size: .9em;
30}
31
32body {
33}
34
35table {
36 margin-left: 7px
37}
38p {
39 margin-bottom: .2em;
40 line-height: 1.5;
41 margin-top: 0px;
42}
43
44.inline {
45 display: inline;
46}
47
48img {
49 max-width: 100%;
50}
51
52#editor {
53 width: 100%;
54 border: 1px solid #999999;
55 margin: 5px 0;
56 padding: 3px;
57 resize: vertical;
58}
59
60.textform {
61width: 100%;
62resize: vertical;
63}
64
65.impersonate {
66 font-style: italic;
67 font-weight: bold;
68 background-color:
69}
70
71.button {
72 background-color: white; /* Green */
73 border: 1px solid black;
74 text-decoration: none;
75 padding: 2px 5px;
76 display: inline-block;
77 margin: 0px;
78}
79
80.button:hover {
81 background-color: black;
82 color: white;
83}
84
85.delete:hover {
86 background-color: red;
87 color: white;
88}
89
90.error {
91 color: red;
92}
93
94.nav {
95 color: blue;
96}
97
98.user-admin-details {
99 margin-left: 1em;
100 margin-bottom: 1em;
101}
102
103a {
104text-decoration: none;
105}
106
107pre {
108 white-space: pre-wrap;
109 line-height: 1.2;
110}
111
112a:hover {
113 text-decoration: underline;
114}