all repos — flounder @ 803bb266d991ee8ddb1b7d977c7caa5bb361d399

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