From: stephen@cubedesigners.com Date: Fri, 1 Jul 2016 17:36:07 +0000 (+0000) Subject: Done #524 @1.5 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=0cb58e7399bfa4599329a9d55106089c4fceec12;p=fluidbook-v3.git Done #524 @1.5 --- diff --git a/less/003-mixins.less b/less/003-mixins.less index 2dd4507..e1bf538 100644 --- a/less/003-mixins.less +++ b/less/003-mixins.less @@ -99,11 +99,16 @@ .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 diff --git a/less/102-footer.less b/less/102-footer.less index c39292a..f52a568 100644 --- a/less/102-footer.less +++ b/less/102-footer.less @@ -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; } diff --git a/less/315-quote.less b/less/315-quote.less index cc72e67..b4d7810 100644 --- a/less/315-quote.less +++ b/less/315-quote.less @@ -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(); } } @@ -132,7 +133,7 @@ .validation-messages { padding: 22px 50px; background-color: #242424; - position: absolute; + position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); @@ -155,4 +156,21 @@ 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