| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* Magic Mirror 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: */
- @font-face {
- font-family: 'Poppins';
- font-style: normal;
- font-weight: 100;
- font-display: swap;
- src: url(https://fonts.gstatic.com/s/poppins/v19/pxiGyp8kv8JHgFVrLPTedw.ttf) format('truetype');
- }
- @font-face {
- font-family: 'Poppins';
- font-style: normal;
- font-weight: 300;
- font-display: swap;
- src: url(https://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
- }
- @font-face {
- font-family: 'Poppins';
- font-style: normal;
- font-weight: 400;
- font-display: swap;
- src: url(https://fonts.gstatic.com/s/poppins/v19/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
- }
- @font-face {
- font-family: 'Poppins';
- font-style: normal;
- font-weight: 700;
- font-display: swap;
- src: url(https://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
- }
- :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;
- }
- /* #module_2_MMM-ImageSlideshow img {
- width: 50%;
- height: auto;
- } */
|