ouidade 3 gadi atpakaļ
vecāks
revīzija
a7efe7a0cb

+ 25 - 11
web/themes/custom/eql/css-compiled/styles.css

@@ -148,10 +148,6 @@ a {
       color: white;
       text-decoration: none; }
 
-.node-type-static {
-  display: grid;
-  grid-template-columns: 2fr 2fr 2fr 2fr 2fr; }
-
 .field--type-entity-reference-revisions .paragraph-summary {
   font-family: "Marianne", sans-serif;
   font-size: 5rem;
@@ -162,6 +158,9 @@ a {
     display: block;
     font-size: 1rem; }
 
+.field--type-entity-reference-revisions .paragraph-summary:nth-of-type(2n) {
+  font-size: 2rem; }
+
 .contextual-region {
   display: grid;
   grid-template-columns: 10% 2fr 2fr 2fr 2fr 10%;
@@ -264,10 +263,25 @@ a {
   display: flex;
   flex-direction: row;
   justify-content: space-around; }
-  #fotter-bottom #block-pieddepage ul {
-    color: #09398b;
-    font-weight: 800;
-    list-style: none; }
-  #fotter-bottom .twitter::before {
-    font-family: "Font Awesome 5 Brands";
-    content: "\f099"; }
+  #fotter-bottom .region {
+    display: block;
+    padding-left: 1rem;
+    border-left: #009ee3 solid 1px;
+    padding-bottom: 2rem; }
+    #fotter-bottom .region h2 {
+      margin-top: 0;
+      color: #09398b; }
+    #fotter-bottom .region img {
+      height: 50px;
+      width: auto; }
+  #fotter-bottom .region-footer-bottom-left {
+    border: none; }
+    #fotter-bottom .region-footer-bottom-left #block-pieddepage ul {
+      margin-top: 0;
+      color: #09398b;
+      font-weight: 800;
+      list-style: none; }
+      #fotter-bottom .region-footer-bottom-left #block-pieddepage ul a {
+        color: #09398b;
+        font-size: 1.5rem;
+        margin-top: 0; }

+ 2 - 2
web/themes/custom/eql/scss/global/_layout.scss

@@ -4,7 +4,6 @@
 // }
 
 
-
 .layout-container {
     position: absolute;
     font-family: $font-family-default;
@@ -18,4 +17,5 @@
 
 // .contextual-region .node-type-static {
 //     grid-template-columns: repeat(6 1fr);
-// }
+// }
+

+ 11 - 8
web/themes/custom/eql/scss/pages/_home.scss

@@ -1,8 +1,8 @@
 
-.node-type-static {
-    display: grid;
-    grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
-}
+// .node-type-static {
+//     display: grid;
+//     grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
+// }
 
 
 .field--type-entity-reference-revisions{
@@ -12,13 +12,16 @@
             font-weight: 600;
             color: $black !important;
             text-transform: capitalize;
-
-
-                span:nth-of-type(2n){
+        
+            span:nth-of-type(2n){
                     display: block;
                     font-size: 1rem;
                 }
-        }
+            }        
+       .paragraph-summary:nth-of-type(2n) {
+        font-size: 2rem;
+       }
+        
 }
 
 .contextual-region{

+ 33 - 3
web/themes/custom/eql/scss/partials/_footer.scss

@@ -1,19 +1,49 @@
 
 
+
 #fotter-bottom{
     display: flex;
     flex-direction: row;
     justify-content: space-around;
 
+    .region{
+        display: block;
+        padding-left: 1rem;
+        border-left: $blue-light solid 1px;
+        padding-bottom: 2rem;
+        h2{
+            margin-top: 0;
+            color: $blue-dark;
+        }
+        img{
+            height: 50px;
+            width: auto;
+        }
+
+    }
+
+    .region-footer-bottom-left{
+        border: none;
         #block-pieddepage ul{
+            margin-top: 0;
             color: $blue-dark;
             font-weight: 800;
             list-style: none;
+
+            a{
+                color: $blue-dark;
+                font-size: 1.5rem;
+                margin-top: 0;
+            }
         }
+    }
+
+
+
  
         
-        .twitter::before {
-            font-family: "Font Awesome 5 Brands"; content: "\f099";
-          }
+        // .twitter::before {
+        //     font-family: "Font Awesome 5 Brands"; content: "\f099";
+        //   }
 
 }