Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
services:dashboards [2024/04/08 12:53] – willy | services:dashboards [2024/04/08 12:56] (current) – willy | ||
---|---|---|---|
Line 5: | Line 5: | ||
There are literally lots of options at your fingertip, looking for //html dashboard// or similar queries will find you tons of open-source products that you can explore and try out. [[https:// | There are literally lots of options at your fingertip, looking for //html dashboard// or similar queries will find you tons of open-source products that you can explore and try out. [[https:// | ||
| | ||
- | I started using [[https:// | + | I started using [[https:// |
Some advantages: | Some advantages: | ||
Line 74: | Line 74: | ||
{{ : | {{ : | ||
- | This dashboard | + | ===== Style ===== |
+ | |||
+ | The dashboard can easily | ||
+ | < | ||
+ | body { background: black; } | ||
+ | a { color: darkred; } | ||
+ | div.header > span { color: white; } | ||
+ | .ok { color: green; } | ||
+ | .ko { color: red; } | ||
+ | |||
+ | .box { | ||
+ | width: 20em; | ||
+ | height: 21em; | ||
+ | background: orange; | ||
+ | margin: 1em; | ||
+ | padding: 0.5em; | ||
+ | text-align: center; | ||
+ | border-radius: | ||
+ | box-shadow: 0.2em 0.2em darkred; | ||
+ | } | ||
+ | .box > a > p { | ||
+ | height: 2em; | ||
+ | margin: 0px; | ||
+ | font-size: 150%; | ||
+ | } | ||
+ | .box > a > img { | ||
+ | height: 19em; | ||
+ | width: 19em; | ||
+ | } | ||
+ | |||
+ | .small { | ||
+ | width: 5em; | ||
+ | height: 6em; | ||
+ | background: orange; | ||
+ | margin: 1em; | ||
+ | padding: 0.5em; | ||
+ | text-align: center; | ||
+ | border-radius: | ||
+ | box-shadow: 0.2em 0.2em darkred; | ||
+ | } | ||
+ | .small > a > p { | ||
+ | height: 1em; | ||
+ | margin: 0px; | ||
+ | } | ||
+ | .small > a > img { | ||
+ | height: 4.5em; | ||
+ | width: 4.5em; | ||
+ | } | ||
+ | |||
+ | .container > p { | ||
+ | color: white; | ||
+ | border-top: 1px solid white; | ||
+ | } | ||
+ | |||
+ | .runner { | ||
+ | max-width: 40em; | ||
+ | max-height: 40em; | ||
+ | background: orange; | ||
+ | color: darkred; | ||
+ | margin: 1em; | ||
+ | padding: 0.5em; | ||
+ | text-align: center; | ||
+ | border-radius: | ||
+ | box-shadow: 0.2em 0.2em darkred; | ||
+ | } | ||
+ | .runner > p { | ||
+ | color: darkred; | ||
+ | margin: 0px; | ||
+ | font-size: 150%; | ||
+ | } | ||
+ | </ | ||