瀏覽代碼

no message

Jonathan Starck 3 年之前
父節點
當前提交
1386d9b22f
共有 2 個文件被更改,包括 31 次插入25 次删除
  1. 4 4
      css/custom.css
  2. 27 21
      css/custom.less

+ 4 - 4
css/custom.css

@@ -8,7 +8,6 @@
  */
 /* 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;
@@ -28,14 +27,15 @@ table.wachenaufgaben {
   font-size: 3.5em !important;
 }
 table.wachenaufgaben tr {
-  opacity: 1!important;
-  font-size: 100%!important;
+  opacity: 1 !important;
+  font-size: 100% !important;
 }
 table.wachenaufgaben tr td {
-  font-size: 100%!important;
+  font-size: 100% !important;
 }
 table.wachenaufgaben tr td.todo_title:before {
   font-family: 'Font Awesome 5 Free';
   font-weight: 400;
+  padding-right: 10px;
   content: "\f2bb";
 }

+ 27 - 21
css/custom.less

@@ -11,34 +11,40 @@
 /*@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;
+    --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;
+    font-size: 3.5em !important;
+
     tr {
-        opacity: 1!important;
-        font-size: 100%!important;
+        opacity: 1 !important;
+        font-size: 100% !important;
+
         td {
-            font-size: 100%!important;
+            font-size: 100% !important;
+
             &.todo_title {
                 &:before {
+                    font-family: 'Font Awesome 5 Free';
+                    font-weight: 400;
+                    padding-right: 10px;
                     content: "\f2bb";
                 }
             }