custom.css 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. }
  29. table.wachenaufgaben tr {
  30. opacity: 1 !important;
  31. font-size: 100% !important;
  32. border-bottom: 5px solid #999 !important;
  33. }
  34. table.wachenaufgaben tr td {
  35. font-size: 100% !important;
  36. text-align: left;
  37. }
  38. table.wachenaufgaben tr td.todo-title:before {
  39. font-family: 'Font Awesome 6 Pro';
  40. font-weight: 400;
  41. padding-right: 10px;
  42. content: "\f737";
  43. -moz-osx-font-smoothing: grayscale;
  44. -webkit-font-smoothing: antialiased;
  45. display: var(--fa-display, inline-block);
  46. font-style: normal;
  47. font-variant: normal;
  48. line-height: 1;
  49. text-rendering: auto;
  50. }
  51. table.wachenaufgaben tr td.clean-title:before {
  52. font-family: 'Font Awesome 6 Pro';
  53. font-weight: 400;
  54. padding-right: 10px;
  55. content: "\e04d";
  56. -moz-osx-font-smoothing: grayscale;
  57. -webkit-font-smoothing: antialiased;
  58. display: var(--fa-display, inline-block);
  59. font-style: normal;
  60. font-variant: normal;
  61. line-height: 1;
  62. text-rendering: auto;
  63. }
  64. table.wachenaufgaben tr td.info-title:before {
  65. font-family: 'Font Awesome 6 Pro';
  66. font-weight: 400;
  67. padding-right: 10px;
  68. content: "\f05a";
  69. -moz-osx-font-smoothing: grayscale;
  70. -webkit-font-smoothing: antialiased;
  71. display: var(--fa-display, inline-block);
  72. font-style: normal;
  73. font-variant: normal;
  74. line-height: 1;
  75. text-rendering: auto;
  76. }