Browse Source

no message

Jonathan Starck 3 năm trước cách đây
mục cha
commit
c54742bb6e
2 tập tin đã thay đổi với 48 bổ sung33 xóa
  1. 10 6
      css/custom.css
  2. 38 27
      css/custom.less

+ 10 - 6
css/custom.css

@@ -23,31 +23,35 @@
   --gap-body-left: 60px;
   --gap-modules: 30px;
 }
-table.wachenaufgaben {
+div.calendar table.wachenaufgaben {
   font-size: 2.5em !important;
   border-collapse: collapse;
 }
-table.wachenaufgaben tr {
+div.calendar table.wachenaufgaben tr {
   opacity: 1 !important;
   font-size: 100% !important;
 }
-table.wachenaufgaben tr td {
+div.calendar table.wachenaufgaben tr td {
   font-size: 100% !important;
   text-align: left;
   border-bottom: 5px solid #999 !important;
   padding: 0.2em;
 }
-table.wachenaufgaben tr td.symbol {
+div.calendar table.wachenaufgaben tr td.symbol {
   display: table-cell;
   color: #fff;
   padding-right: 0;
   min-width: 1.2em;
   max-width: 1.2em;
 }
-table.wachenaufgaben tr td.symbol span.fa {
+div.calendar table.wachenaufgaben tr td.symbol span.fa {
   font-family: 'Font Awesome 6 Pro';
   font-weight: 300;
 }
-table.wachenaufgaben tr td.time {
+div.calendar table.wachenaufgaben tr td.time {
   font-size: 90%;
 }
+div.dailyoverview header.module-header {
+  font-size: 2.5em !important;
+  border-bottom: 5px solid #999 !important;
+}

+ 38 - 27
css/custom.less

@@ -30,37 +30,48 @@
     --gap-modules: 30px;
 }
 
-table.wachenaufgaben {
-    font-size: 2.5em !important;
-    border-collapse: collapse;
-
-    tr {
-        opacity: 1 !important;
-        font-size: 100% !important;
-
-        td {
+div.calendar {
+    table.wachenaufgaben {
+        font-size: 2.5em !important;
+        border-collapse: collapse;
+    
+        tr {
+            opacity: 1 !important;
             font-size: 100% !important;
-            text-align: left;
-            border-bottom: 5px solid #999 !important;
-            padding: 0.2em;
-
-            &.symbol {
-                display: table-cell;
-                color: #fff;
-                padding-right: 0;
-                min-width: 1.2em;
-                max-width: 1.2em;
-
-                span {
-                    &.fa {
-                        font-family: 'Font Awesome 6 Pro';
-                        font-weight: 300;
+    
+            td {
+                font-size: 100% !important;
+                text-align: left;
+                border-bottom: 5px solid #999 !important;
+                padding: 0.2em;
+    
+                &.symbol {
+                    display: table-cell;
+                    color: #fff;
+                    padding-right: 0;
+                    min-width: 1.2em;
+                    max-width: 1.2em;
+    
+                    span {
+                        &.fa {
+                            font-family: 'Font Awesome 6 Pro';
+                            font-weight: 300;
+                        }
                     }
                 }
-            }
-            &.time{
-                font-size: 90%;
+                &.time{
+                    font-size: 90%;
+                }
             }
         }
     }
+}
+
+div.dailyoverview {
+  header {
+      &.module-header {
+        font-size: 2.5em !important;
+        border-bottom: 5px solid #999 !important;
+      }
+  }  
 }