templates/static/style.css (view raw)
1main {
2 max-width: 70ch;
3 padding: 2ch;
4 margin: auto;
5 font-family: Helvetica, Arial, monospace;
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
16body {
17 background-color: lightgrey;
18}
19
20table {
21 margin-left: 7px
22}
23p {
24 margin-bottom: .2em;
25 line-height: 1.5;
26 margin-top: 0px;
27}
28
29.inline {
30 display: inline;
31}
32
33img {
34 max-width: 100%;
35}
36
37#editor {
38 width: 100%;
39 border: 1px solid #999999;
40 width: 100%;
41 margin: 5px 0;
42 padding: 3px;
43 resize: none;
44}
45
46.button {
47 background-color: white; /* Green */
48 border: 1px solid black;
49 text-decoration: none;
50 padding: 2px 5px;
51 display: inline-block;
52 margin: 0px;
53 transition-duration: 0.2s;
54}
55
56.button:hover {
57 background-color: black;
58 color: white;
59}
60
61.delete:hover {
62 background-color: red;
63 color: white;
64}
65
66.error {
67 color: red;
68}
69
70.nav {
71 color: blue;
72}
73
74.user-admin-details {
75 margin-left: 1em;
76 margin-bottom: 1em;
77}
78a:visited {
79 color:blue
80}
81
82a {
83text-decoration: none;
84}
85
86pre {
87 white-space: pre-wrap;
88 line-height: 1.2;
89}
90
91a:hover {
92 background-color: yellow;
93 text-decoration: underline;
94}