2022-01-26 23:09:26 +01:00
|
|
|
/* MagicMirror² Custom CSS Sample
|
2021-05-14 17:09:46 +02:00
|
|
|
*
|
|
|
|
* Change color and fonts here.
|
|
|
|
*
|
|
|
|
* Beware that properties cannot be unitless, so for example write '--gap-body: 0px;' instead of just '--gap-body: 0;'
|
2021-04-14 16:56:29 +02:00
|
|
|
*
|
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-04-04 13:22:33 -05:00
|
|
|
|
2021-04-17 10:27:36 +02:00
|
|
|
/* 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'); */
|
2021-04-14 16:56:29 +02:00
|
|
|
|
2021-04-04 13:22:33 -05:00
|
|
|
:root {
|
2021-04-14 16:56:29 +02:00
|
|
|
--color-text: #999;
|
|
|
|
--color-text-dimmed: #666;
|
2021-04-08 14:56:01 -05:00
|
|
|
--color-text-bright: #fff;
|
2021-04-14 16:56:29 +02:00
|
|
|
--color-background: black;
|
2021-05-14 17:09:46 +02:00
|
|
|
|
2021-04-14 16:56:29 +02:00
|
|
|
--font-primary: "Roboto Condensed";
|
|
|
|
--font-secondary: "Roboto";
|
2021-05-14 17:09:46 +02:00
|
|
|
|
|
|
|
--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;
|
2021-04-08 14:56:01 -05:00
|
|
|
}
|