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