From c666a852baa717b310d229a8f222a1c78909ccfe Mon Sep 17 00:00:00 2001 From: mjzou2 <mjzou2@illinois.edu> Date: Sun, 7 May 2023 02:39:30 -0500 Subject: [PATCH] Upload New File --- MagicMirror/custom.css | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 MagicMirror/custom.css diff --git a/MagicMirror/custom.css b/MagicMirror/custom.css new file mode 100644 index 0000000..c29a75e --- /dev/null +++ b/MagicMirror/custom.css @@ -0,0 +1,46 @@ +/* MagicMirror² Custom CSS Sample + * + * Change color and fonts here. + * + * Beware that properties cannot be unitless, so for example write '--gap-body: 0px;' instead of just '--gap-body: 0;' + * + * MIT Licensed. + */ + +/* Uncomment and adjust accordingly if you want to import another font from the google-fonts-api: */ +/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap'); */ + +:root { + --color-text: #999; + --color-text-dimmed: #666; + --color-text-bright: #fff; + --color-background: black; + + --font-primary: "Roboto Condensed"; + --font-secondary: "Roboto"; + + --font-size: 20px; + --font-size-small: 0.75rem; + + --gap-body-top: 60px; + --gap-body-right: 60px; + --gap-body-bottom: 60px; + --gap-body-left: 60px; + + --gap-modules: 30px; +} + +.MMM-LOLESPORTS-SCHEDULES { + transform: scale(0.75); + transform-origin: bottom left; +} + +.MMM-OnSpotify { + transform: scale(0.75); + transform-origin: bottom right; +} + +.MMM-EyeCandy { + transform: scale(1.5); + transform-origin: center; +} -- GitLab