Add everything to www

This commit is contained in:
KenwoodFox
2026-06-17 23:19:14 -04:00
parent 8266d27038
commit 7ebad437bd
8 changed files with 0 additions and 0 deletions

32
www/css/grafana.css Normal file
View 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: 400px;
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);
}