custom.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. tr {
  29. opacity: 1 !important;
  30. font-size: 100% !important;
  31. td {
  32. font-size: 100% !important;
  33. text-align: left;
  34. &.todo-title {
  35. &:before {
  36. font-family: 'Font Awesome 6 Pro';
  37. font-weight: 400;
  38. padding-right: 10px;
  39. content: "\f737";
  40. -moz-osx-font-smoothing: grayscale;
  41. -webkit-font-smoothing: antialiased;
  42. display: var(--fa-display, inline-block);
  43. font-style: normal;
  44. font-variant: normal;
  45. line-height: 1;
  46. text-rendering: auto;
  47. }
  48. }
  49. &.clean-title {
  50. &:before {
  51. font-family: 'Font Awesome 6 Pro';
  52. font-weight: 400;
  53. padding-right: 10px;
  54. content: "\e04d";
  55. -moz-osx-font-smoothing: grayscale;
  56. -webkit-font-smoothing: antialiased;
  57. display: var(--fa-display, inline-block);
  58. font-style: normal;
  59. font-variant: normal;
  60. line-height: 1;
  61. text-rendering: auto;
  62. }
  63. }
  64. &.info-title {
  65. &: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. }
  78. }
  79. }
  80. }
  81. }