blob: c1ab4e22ac8aee03e370e8acd372dc524b1b7e5d [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
Tim Windelschmidtc3b08282023-05-04 16:39:15 +020065 /* Colouring of the Machine State in fragment_tag_provided.gohtml. */
66 b.StatusMissing,
67 b.StatusProvisioning,
68 b.StatusProvisioningFailedPermanent,
69 b.StatusStopped
70 {
71 color: red;
72 }
73 b.StatusRunning {
74 color: green;
75 }
76
Serge Bazanski77628312023-02-15 23:33:22 +010077 /* Generic font style tags for any element. */
78 .small {
79 font-size: 0.8em;
80 }
81 .faint {
82 color: #333;
83 }
84 .mono {
85 font-family: monospace;
86 }
87 .error {
88 color: #f00;
89 }
90
91 /* For simple column style layouts. */
92 .vsplit {
93 display: flex;
94 flex-direction: row;
95 flex-wrap: nowrap;
96 align-items: stretch;
97 }
98 .column {
99 flex-grow: 1;
100 padding: 0.5em;
101 }
102</style>
103<h1><a href="/">we<span class="red">bug</span></a> <span class="info">BMDB at {{ .BMDBAddress }} schema {{ .BMDBSchema }}</span></h1>