33 lines
821 B
CSS
33 lines
821 B
CSS
/*
|
|
* 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);
|
|
}
|