all repos — flounder @ b18acf6e7fa430cf39e4c02e45bb1e4463c65b23

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