custom.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Magic Mirror Custom CSS Sample
  2. *
  3. * Change color and fonts here.
  4. *
  5. * Beware that properties cannot be unitless, so for example write '--gap-body: 0px;' instead of just '--gap-body: 0;'
  6. *
  7. * MIT Licensed.
  8. */
  9. /* Uncomment and adjust accordingly if you want to import another font from the google-fonts-api: */
  10. /*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap');*/
  11. :root {
  12. --color-text: #999;
  13. --color-text-dimmed: #666;
  14. --color-text-bright: #fff;
  15. --color-background: black;
  16. --font-primary: "Roboto Condensed";
  17. --font-secondary: "Roboto";
  18. --font-size: 20px;
  19. --font-size-small: 0.75rem;
  20. --gap-body-top: 60px;
  21. --gap-body-right: 60px;
  22. --gap-body-bottom: 60px;
  23. --gap-body-left: 60px;
  24. --gap-modules: 30px;
  25. }
  26. table.wachenaufgaben {
  27. font-size: 3.5em !important;
  28. border-collapse: collapse;
  29. }
  30. table.wachenaufgaben tr {
  31. opacity: 1 !important;
  32. font-size: 100% !important;
  33. }
  34. table.wachenaufgaben tr td {
  35. font-size: 100% !important;
  36. text-align: left;
  37. border-bottom: 5px solid #999 !important;
  38. }
  39. table.wachenaufgaben tr td.todo-title:before {
  40. font-family: 'Font Awesome 6 Pro';
  41. font-weight: 400;
  42. padding-right: 10px;
  43. content: "\f737";
  44. -moz-osx-font-smoothing: grayscale;
  45. -webkit-font-smoothing: antialiased;
  46. display: var(--fa-display, inline-block);
  47. font-style: normal;
  48. font-variant: normal;
  49. line-height: 1;
  50. text-rendering: auto;
  51. }
  52. table.wachenaufgaben tr td.clean-title:before {
  53. font-family: 'Font Awesome 6 Pro';
  54. font-weight: 400;
  55. padding-right: 10px;
  56. content: "\e04d";
  57. -moz-osx-font-smoothing: grayscale;
  58. -webkit-font-smoothing: antialiased;
  59. display: var(--fa-display, inline-block);
  60. font-style: normal;
  61. font-variant: normal;
  62. line-height: 1;
  63. text-rendering: auto;
  64. }
  65. table.wachenaufgaben tr td.info-title:before {
  66. font-family: 'Font Awesome 6 Pro';
  67. font-weight: 400;
  68. padding-right: 10px;
  69. content: "\f05a";
  70. -moz-osx-font-smoothing: grayscale;
  71. -webkit-font-smoothing: antialiased;
  72. display: var(--fa-display, inline-block);
  73. font-style: normal;
  74. font-variant: normal;
  75. line-height: 1;
  76. text-rendering: auto;
  77. }