File talk:Minimal Simplifier as of 2021-02-14.png

Add topic
From Bradshaw, the companion guide to On Our Lines
Revision as of 20:21, 1 March 2021 by Jack (talk | contribs) (Created page with "To make this be not-green, change `color:green;` to, say, `color:white;`. You can also use any colour e.g. #fdf391 <pre> →‎Remove redundant title: h1 { display:none; }...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

To make this be not-green, change `color:green;` to, say, `color:white;`. You can also use any colour e.g. #fdf391

/* Remove redundant title */
h1 {
  display:none;
}

/* General theme is green on black */
body {
  margin:2px;
  color:green;
  background-color:black;
}

/* Format table */
table, th, td {
  font-family:Liberation Mono, Monospace, Consolas, Courier New, monospace;
  font-weight:normal;
  font-size:9pt;
  text-align:left;
  border-collapse:collapse;
  vertical-align:top;
  padding:2px;
}

/* Hide UID column and final six columns */
.uid, .origin, .originTime, .destinationTime, .operator, .notes, .destination {
  display: none;
}