all repos — flounder @ 2e24c3a6f64f2e2f8a9e2179e8b692dd6b13de54

A small site builder for the Gemini protocol

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
11p {
12    margin-bottom: .2em; 
13    line-height: 1.5;
14    margin-top: 0px; 
15}
16
17.inline {
18  display: inline;
19}
20
21img {
22  max-width: 100%;
23}
24
25#editor {
26  width: 100%;
27  border: 1px solid #999999;
28  width: 100%;
29  margin: 5px 0;
30  padding: 3px;
31  resize: none;
32}
33
34.button {
35  background-color: white; /* Green */
36  border: 1px solid black;
37  text-decoration: none;
38  padding: 2px 5px;
39  display: inline-block;
40  margin: 0px;
41  transition-duration: 0.2s;
42}
43
44.button:hover {
45  background-color: black;
46  color: white;
47}
48
49.delete:hover {
50  background-color: red;
51  color: white;
52}
53
54.error {
55  color: red;
56}
57
58a:visited {
59  color: blue;
60}
61
62a {
63  transition-duration: 0.2s;
64  font-weight: bold;
65}
66
67a:hover {
68  background-color: blue;
69  color: white;
70}