all repos — flounder @ 161962dc4b3ea854aebdda56410ee5a1524e426f

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  width: 100%;
40  margin: 5px 0;
41  padding: 3px;
42  resize: vertical;
43}
44
45.button {
46  background-color: white; /* Green */
47  border: 1px solid black;
48  text-decoration: none;
49  padding: 2px 5px;
50  display: inline-block;
51  margin: 0px;
52  transition-duration: 0.2s;
53}
54
55.button:hover {
56  background-color: black;
57  color: white;
58}
59
60.delete:hover {
61  background-color: red;
62  color: white;
63}
64
65.error {
66  color: red;
67}
68
69.nav {
70  color: blue;
71}
72
73.user-admin-details {
74  margin-left: 1em;
75  margin-bottom: 1em;
76}
77a:visited {
78  color:blue
79}
80
81a {
82text-decoration: none;
83}
84
85pre {
86    white-space: pre-wrap;
87    line-height: 1.2;
88}
89
90a:hover {
91  background-color: yellow;
92  text-decoration: underline;
93}