all repos — flounder @ 1dff307d9086d5015da568e89a51ffcc07d44a42

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  transition-duration: 0.2s;
57}
58
59.button:hover {
60  background-color: black;
61  color: white;
62}
63
64.delete:hover {
65  background-color: red;
66  color: white;
67}
68
69.error {
70  color: red;
71}
72
73.nav {
74  color: blue;
75}
76
77.user-admin-details {
78  margin-left: 1em;
79  margin-bottom: 1em;
80}
81a:visited {
82  color:blue
83}
84
85a {
86text-decoration: none;
87}
88
89pre {
90    white-space: pre-wrap;
91    line-height: 1.2;
92}
93
94a:hover {
95  background-color: yellow;
96  text-decoration: underline;
97}