| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* 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: */
- /*@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;
- }
- table.wachenaufgaben {
- font-size: 3.5em !important;
- tr {
- opacity: 1 !important;
- font-size: 100% !important;
- td {
- font-size: 100% !important;
- text-align: left;
- &.todo_title {
- &:before {
- font-family: 'Font Awesome 6 Pro';
- font-weight: 400;
- padding-right: 10px;
- content: "\f737";
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- display: var(--fa-display, inline-block);
- font-style: normal;
- font-variant: normal;
- line-height: 1;
- text-rendering: auto;
- }
- }
- &.clean_title {
- &:before {
- font-family: 'Font Awesome 6 Pro';
- font-weight: 400;
- padding-right: 10px;
- content: "\e04d";
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- display: var(--fa-display, inline-block);
- font-style: normal;
- font-variant: normal;
- line-height: 1;
- text-rendering: auto;
- }
- }
- }
- }
- }
|