Add all bp
This commit is contained in:
32
css/grafana.css
Normal file
32
css/grafana.css
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Grafana embed wrappers for rx.kitsunehosting.net
|
||||
*
|
||||
* Cross-origin iframes cannot be styled from this page — Grafana renders on
|
||||
* grafana.kitsunehosting.net. Use URL params on the iframe src instead:
|
||||
* theme=dark|light panel colors
|
||||
* kiosk=tv hide Grafana chrome (nav, menus)
|
||||
* refresh=30s auto-refresh interval
|
||||
*
|
||||
* Custom Grafana themes require server-side config on the Grafana instance.
|
||||
*/
|
||||
|
||||
.grafana-embed {
|
||||
margin-bottom: 12px;
|
||||
background: #000000;
|
||||
border: 2px inset #808080;
|
||||
padding: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.grafana-embed iframe {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
border: 0;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
/* Match the retro terminal vibe when Grafana is in dark mode */
|
||||
.grafana-embed--dark {
|
||||
box-shadow: inset 0 0 12px rgba(0, 255, 0, 0.08);
|
||||
}
|
||||
208
css/style.css
Normal file
208
css/style.css
Normal file
@@ -0,0 +1,208 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 16px;
|
||||
background: #c0c0c0;
|
||||
color: #000000;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0000ee;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #551a8b;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
.banner {
|
||||
text-align: center;
|
||||
background: #000080;
|
||||
color: #ffff00;
|
||||
padding: 12px;
|
||||
border: 4px outset #808080;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
letter-spacing: 2px;
|
||||
text-shadow: 2px 2px #000000;
|
||||
}
|
||||
|
||||
.nav {
|
||||
text-align: center;
|
||||
margin: 12px 0;
|
||||
padding: 8px;
|
||||
background: #d4d0c8;
|
||||
border: 2px inset #808080;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
margin: 0 16px;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.nav a.active {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
background: #ffffff;
|
||||
padding: 2px 6px;
|
||||
border: 1px inset #808080;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
height: 2px;
|
||||
background: #808080;
|
||||
margin: 16px 0;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background: #d4d0c8;
|
||||
border: 2px inset #808080;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
margin: 0 0 12px 0;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.live-feed {
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
max-width: 960px;
|
||||
}
|
||||
|
||||
.live-feed img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
aspect-ratio: 16 / 9;
|
||||
object-fit: contain;
|
||||
border: 3px inset #808080;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.live-label {
|
||||
margin-top: 8px;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 14px;
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
.live-timestamp {
|
||||
margin: 4px 0 0;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 12px;
|
||||
color: #404040;
|
||||
}
|
||||
|
||||
.blink {
|
||||
animation: blink 1s step-end infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.content-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.content-table td {
|
||||
vertical-align: top;
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.graphs-panel {
|
||||
min-height: 280px;
|
||||
}
|
||||
|
||||
.graph-placeholder {
|
||||
height: 200px;
|
||||
background: #000000;
|
||||
border: 2px inset #808080;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #00ff00;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 14px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.stats-panel {
|
||||
min-height: 280px;
|
||||
}
|
||||
|
||||
.stat-block {
|
||||
text-align: center;
|
||||
margin-bottom: 16px;
|
||||
padding: 12px;
|
||||
background: #ffffff;
|
||||
border: 2px outset #808080;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 48px;
|
||||
font-weight: bold;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
color: #000080;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.stat-value--ok {
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
.stat-value--bad {
|
||||
color: #cc0000;
|
||||
}
|
||||
|
||||
#stat-status {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 14px;
|
||||
margin-top: 4px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.placeholder-page {
|
||||
text-align: center;
|
||||
padding: 48px 16px;
|
||||
}
|
||||
|
||||
.placeholder-page h2 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.under-construction {
|
||||
font-size: 48px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
margin-top: 24px;
|
||||
font-size: 12px;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
color: #404040;
|
||||
}
|
||||
Reference in New Issue
Block a user