From 11f2a1b1a2a4f6f90d768e7baa1425a266dad2cc Mon Sep 17 00:00:00 2001 From: Anxhelo Lushka Date: Tue, 19 Jun 2018 21:22:53 +0200 Subject: [PATCH] some changes to the cookiebar --- css/style.css | 7 +++---- js/svg.js | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/css/style.css b/css/style.css index 0c439ae..3b01694 100755 --- a/css/style.css +++ b/css/style.css @@ -1779,7 +1779,7 @@ p.blogauthor { #cookieConsent { background-color: rgba(20,20,20,0.8); min-height: 26px; - font-size: 14px; + font-size: 12px; color: #ccc; line-height: 26px; padding: 8px 0 8px 30px; @@ -1801,7 +1801,6 @@ p.blogauthor { cursor: pointer; height: 20px; width: 20px; - margin: -15px 0 0 0; font-weight: bold; } #closeCookieConsent:hover { @@ -1812,10 +1811,10 @@ p.blogauthor { color: #000; display: inline-block; border-radius: 5px; - padding: 0 20px; + padding: 0 10px; cursor: pointer; float: right; - margin: 0 60px 0 10px; + margin: 0 10px 0 5px; } #cookieConsent a.cookieConsentOK:hover { background-color: #E0C91F; diff --git a/js/svg.js b/js/svg.js index bb96d75..9953864 100644 --- a/js/svg.js +++ b/js/svg.js @@ -38,8 +38,8 @@ jQuery('img.svg').each(function(){ $(document).ready(function(){ setTimeout(function () { $("#cookieConsent").fadeIn(200); - }, 4000); + }, 2500); $("#closeCookieConsent, .cookieConsentOK").click(function() { $("#cookieConsent").fadeOut(200); }); -}); +});