all repos — flounder @ 9c65105f28892d9a74734bb8d8d8b3fbbbe7846e

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
58.nav {
59  color: blue;
60}
61a:visited {
62  color:blue
63}
64
65a {
66text-decoration: none;
67}
68
69pre {
70    white-space: pre-wrap;
71}
72
73a:hover {
74  background-color: yellow;
75  text-decoration: underline;
76}