| Serge Bazanski | 7762831 | 2023-02-15 23:33:22 +0100 | [diff] [blame] | 1 | <!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 |  | 
 | 56 |     /* Colouring of the Work History log in machine.html. */ | 
 | 57 |     tr.EventFailed td, tr.EventCanceled td { | 
 | 58 |         background-color: #f8e8e8; | 
 | 59 |     } | 
 | 60 |     tr.EventFinished td { | 
 | 61 |         background-color: #e8f8e8; | 
 | 62 |     } | 
 | 63 |  | 
 | 64 |     /* Generic font style tags for any element. */ | 
 | 65 |     .small { | 
 | 66 |         font-size: 0.8em; | 
 | 67 |     } | 
 | 68 |     .faint { | 
 | 69 |         color: #333; | 
 | 70 |     } | 
 | 71 |     .mono { | 
 | 72 |         font-family: monospace; | 
 | 73 |     } | 
 | 74 |     .error { | 
 | 75 |         color: #f00; | 
 | 76 |     } | 
 | 77 |  | 
 | 78 |     /* For simple column style layouts. */ | 
 | 79 |     .vsplit { | 
 | 80 |         display: flex; | 
 | 81 |         flex-direction: row; | 
 | 82 |         flex-wrap: nowrap; | 
 | 83 |         align-items: stretch; | 
 | 84 |     } | 
 | 85 |     .column { | 
 | 86 |         flex-grow: 1; | 
 | 87 |         padding: 0.5em; | 
 | 88 |     } | 
 | 89 | </style> | 
 | 90 | <h1><a href="/">we<span class="red">bug</span></a> <span class="info">BMDB at {{ .BMDBAddress }} schema {{ .BMDBSchema }}</span></h1> |