all repos — flounder @ 53603dd0b72986258f7e3b836e482a979a713dae

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: "Roboto", Helvetica, Arial, Sans-serif;
  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.impersonate {
 50  font-style: italic;
 51  font-weight: bold;
 52  background-color: 
 53}
 54
 55.button {
 56  background-color: white; /* Green */
 57  border: 1px solid black;
 58  text-decoration: none;
 59  padding: 2px 5px;
 60  display: inline-block;
 61  margin: 0px;
 62}
 63
 64.button:hover {
 65  background-color: black;
 66  color: white;
 67}
 68
 69.delete:hover {
 70  background-color: red;
 71  color: white;
 72}
 73
 74.error {
 75  color: red;
 76}
 77
 78.nav {
 79  color: blue;
 80}
 81
 82.user-admin-details {
 83  margin-left: 1em;
 84  margin-bottom: 1em;
 85}
 86a:visited {
 87  color:blue
 88}
 89
 90a {
 91text-decoration: none;
 92}
 93
 94pre {
 95    white-space: pre-wrap;
 96    line-height: 1.2;
 97}
 98
 99a:hover {
100  text-decoration: underline;
101}