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