all repos — flounder @ dd6e1705334fab5e4e108c3b6b73f109f707cbe2

A small site builder for the Gemini protocol

templates/static/style.css (view raw)

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