]> _ Git - fluidbook-v3.git/commitdiff
Done #524 @1.5
authorstephen@cubedesigners.com <stephen@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Fri, 1 Jul 2016 17:36:07 +0000 (17:36 +0000)
committerstephen@cubedesigners.com <stephen@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Fri, 1 Jul 2016 17:36:07 +0000 (17:36 +0000)
less/003-mixins.less
less/102-footer.less
less/315-quote.less

index 2dd450721d26ab3f40bcf97f9a6411ff62b05b03..e1bf538a5c1f7df83be1ad64f161f917e5704b4d 100644 (file)
 .list() {
        list-style: none;
        li {
+        position: relative;
+        padding-left: 1.5em;
+
                &:before {
-                       content: '>';
-                       font-family: @icons;
-                       margin-right: 0.8em;
-                       font-size: 0.7em;
+          content: '>';
+          font-family: @icons;
+          font-size: 0.7em;
+          position: absolute;
+          top: 0.5em;
+          left: 0;
                }
        }
 }
\ No newline at end of file
index c39292a8c4ac7fbd882c75f0d5c087fabe7d40e6..f52a5687bde4778b8bfaa853cc534e06f6e7f5cf 100644 (file)
@@ -83,14 +83,12 @@ footer.site {
     transition: all 0.25s;
 
     &:after {
-      content: '';
-      width: 20px;
-      height: 13px;
+      content: '-';
+      font-family: @icons;
+      font-size: 19px;
       position: absolute;
-      top: 19px;
+      top: 16px;
       right: 45px;
-      background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAAgklEQVQ4T63TWw2AMBBE0TuOkAAOkAASkIACJIAEHGAFCTgY0oQPQniktP3unk66uyLy2DbQSpruShXpYbsBRmCS1F7ro8EAvKG/wBM6APM56W/wQAtgCSjQSdqSwAu6ApVshxfK2OY83O/zJ0xJZjvfH9quj3lM73LWOcy+KV+7vAPH20Kl7qXkFAAAAABJRU5ErkJggg==');
-      background-size: 100%;
       opacity: 0;
       transition: opacity 0.3s;
     }
index cc72e6785c4b984a0d2cd77503d98fc7cb629ca1..b4d78101dd9c414fd84d369b97240923501c8fd6 100644 (file)
@@ -2,14 +2,16 @@
 
 // Request a quote section
 .request-quote {
+
+    // Styling when open in a popup
+    .popupWindow & {
+      padding: 0 2% 1%;
+    }
+
        .text {
                padding-right: 30px;
        }
 
-       .form {
-               position: relative;
-       }
-
        .zend_form {
                display: flex;
                flex-wrap: wrap;
@@ -87,7 +89,6 @@
                }
 
                ul {
-                       padding-left: 10px;
                        .list();
                }
        }
        .validation-messages {
                padding: 22px 50px;
                background-color: #242424;
-               position: absolute;
+               position: fixed;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
        font-size: 22px;
        padding: 200px 120px;
        text-align: center;
+}
+
+.popupWindow .closePopup {
+       text-decoration: none;
+       top: 12px;
+       right: 20px;
+
+       img {
+               display: none;
+       }
+
+       &:after {
+               content: 'X';
+               .font-thinning();
+               font-family: @icons;
+               font-size: 20px;
+       }
 }
\ No newline at end of file