all repos — flounder @ c6b4711306bbd9c0d58ebda18a76d6e0515fd68f

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