blob: 46dec829094d7465ba4ccbddce588a5aa6d70db8 [file] [log] [blame]
Serge Bazanski77628312023-02-15 23:33:22 +01001<!DOCTYPE html>
2<meta charset="utf-8">
3<title>BMDB webug</title>
4<style>
5 body {
6 font-family: sans-serif;
7 background: #fff;
8 }
9
10 /* Logotype. */
11 h1 {
12 clear: both;
13 padding-left: 1em;
14 padding-top: 0.5em;
15 }
16 h1 a {
17 text-decoration: none;
18 }
19 h1 a, h1 a:visited, h1 a:hover, h1 a:active {
20 color: inherit;
21 }
22 h1 span.red {
23 background-color: red;
24 color: white;
25 padding: 0.1em;
26 border-radius: 0.4em;
27 }
28 h1 span.info {
29 font-size: 0.5em;
30 font-weight: normal;
31 font-style: italic;
32 }
33
34 /* Section headers. */
35 h2 {
36 clear: both;
37 width: 100%;
38 text-align: center;
39 font-size: 120%;
40 background: #eeeeff;
41 }
42
43 /* Stylish tables. */
44 table, th, td {
45 background-color: #eee;
46 padding: 0.2em 0.4em 0.2em 0.4em;
47 }
48 table th {
49 background-color: #c0c0c0;
50 }
51 table {
52 background-color: #fff;
53 border-spacing: 0.2em;
54 }
55
Tim Windelschmidt93b6fad2023-05-04 16:35:17 +020056 /* Colouring of the Work History log in machine.gohtml. */
57 tr.EventFailed td,
58 tr.EventCanceled td {
Serge Bazanski77628312023-02-15 23:33:22 +010059 background-color: #f8e8e8;
60 }
61 tr.EventFinished td {
62 background-color: #e8f8e8;
63 }
64
65 /* Generic font style tags for any element. */
66 .small {
67 font-size: 0.8em;
68 }
69 .faint {
70 color: #333;
71 }
72 .mono {
73 font-family: monospace;
74 }
75 .error {
76 color: #f00;
77 }
78
79 /* For simple column style layouts. */
80 .vsplit {
81 display: flex;
82 flex-direction: row;
83 flex-wrap: nowrap;
84 align-items: stretch;
85 }
86 .column {
87 flex-grow: 1;
88 padding: 0.5em;
89 }
90</style>
91<h1><a href="/">we<span class="red">bug</span></a> <span class="info">BMDB at {{ .BMDBAddress }} schema {{ .BMDBSchema }}</span></h1>