diff options
author | Marvin Borner | 2019-05-07 18:59:17 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-07 18:59:17 +0200 |
commit | 94c2214b819c4fe75a479f37aaad99e90bfe5b63 (patch) | |
tree | ca25e4382a1ff5bcf59dc291e2d291eb7f4f8367 /assets/css/main.css | |
parent | 5e94a7a562030f06994ca28a3615ec0cb3b7483a (diff) |
Almost completely overridden and overworked project
Diffstat (limited to 'assets/css/main.css')
-rw-r--r-- | assets/css/main.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..805975f --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,35 @@ +/** + * Stylesheet of the Netflix Stats Generator + * @author Marvin Borner + * @copyright Marvin Borner 2019 + */ + +html, body { + padding: 8px; + font-family: "Varela Round", sans-serif !important; + text-rendering: optimizeLegibility !important; +} + +.loading, .stats { + display: none; +} + +.stats { + text-align: center; +} + +.stats > div { + padding: 8px; + margin-top: 8px; + border: 1px solid black; +} + +.heatMap { + border-collapse: collapse; +} + +.heatMap td { + width: 2vw; + height: 2vw; + border: 1px solid black; +} |