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
15h1, h2, h3, h4, h5, h6{
16 margin-top:0;
17 margin-bottom:.2em;
18}
19
20.footer {
21 font-style: italic;
22 color: grey;
23 font-size: .9em;
24}
25
26body {
27}
28
29table {
30 margin-left: 7px
31}
32p {
33 margin-bottom: .2em;
34 line-height: 1.5;
35 margin-top: 0px;
36}
37
38.inline {
39 display: inline;
40}
41
42img {
43 max-width: 100%;
44}
45
46#editor {
47 width: 100%;
48 border: 1px solid #999999;
49 margin: 5px 0;
50 padding: 3px;
51 font-size: 1rem;
52 resize: vertical;
53}
54
55.textform {
56width: 100%;
57resize: vertical;
58}
59
60.impersonate {
61 font-style: italic;
62 font-weight: bold;
63}
64
65.button {
66 background-color: white; /* Green */
67 border: 1px solid black;
68 text-decoration: none;
69 padding: 2px 5px;
70 display: inline-block;
71 margin: 0px;
72 font-size: 1rem;
73}
74
75
76.button:hover {
77 background-color: black;
78 color: white;
79}
80
81.delete:hover {
82 background-color: red;
83 color: white;
84}
85
86.error {
87 color: red;
88}
89
90.warning {
91 color: #ffcc00 ;
92}
93
94.alert {
95 color: green;
96}
97
98.nav {
99 color: blue;
100}
101
102.user-admin-details {
103 margin-left: 1em;
104 margin-bottom: 1em;
105}
106
107a {
108text-decoration: none;
109}
110
111pre {
112 line-height: 1.2;
113 font-size: 1rem;
114 overflow: auto;
115}
116
117a:hover {
118 text-decoration: underline;
119}
120
121ul {
122 padding-left: 1.5rem;
123}
124
125.indent-wrap {
126 padding-left: 1em;
127 text-indent: -1em;
128}
129
130blockquote {
131 margin-left: 1.5em;
132 font-style: italic;
133 background: #f9f9f9;
134 border-left: .5em solid #ccc;
135 margin-bottom: 0px;
136 margin-top: 0px;
137 padding: .5em 10px;
138}
139
140@media (prefers-color-scheme: dark) {
141 body, main { background: #1b262c; color: white; }
142 a { color: #21e6c1 }
143 a:visited { color: #21e6c1 }
144 input[type="text"], input[type="password"], textarea {
145 color: white;
146 background-color: #121212;
147 }
148 blockquote {
149 background-color: #121212;
150 border-left: .5em solid black;
151 }
152}
153
154@media only screen and (max-width: 600px) {
155 body {
156 font-size: 16px
157 }
158 input[type="text"], input[type="password"], textarea {
159 font-size: 1rem;
160 }
161
162 blockquote {
163 margin-left: 0;
164 margin-right: 0;
165 }
166}
167
168hr.thin {
169 border: 0;
170 height: 0;
171 border-top: 1px solid rgba(0, 0, 0, 0.1);
172 border-bottom: 1px solid rgba(255, 255, 255, 0.3);
173}