trying to update the custom.css file in status assets.

fixing an error in some javascript.
This commit is contained in:
danfunk 2023-05-30 16:42:35 -04:00
parent 3dbb736a0e
commit 9e069b2319
2 changed files with 31 additions and 14 deletions

View File

@ -63,7 +63,7 @@
gtag('js', new Date());
//REPLACE WITH YOUR GA TAG!
gtag('config', 'G-3Z83G8WLEK', { 'anonymize_ip': true, cookie_flags: 'secure;samesite=none' });
}
});
{{ end }}
} else if (readCookie('cookie-notice-option')!='false'){

View File

@ -52,16 +52,33 @@
color: #adb5bd;
}
#cookie-notice {font-size: larger; padding: 0.5rem 1rem; display: none;
text-align: center; position: fixed; bottom: 0; left: 20px; padding-top: 40px;
padding-bottom: 40px; width: 100%; background: rgb(70, 70, 70);
color: rgba(255,255,255,0.8);}
#cookie-notice a {font-weight: 600; display: inline-flex; cursor: pointer; margin-left: 0.5rem;}
#cookie-notice-accept {color:rgb(86, 228, 58)}
#cookie-notice-deny {color:rgb(243, 34, 34)}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
#cookie-notice {left: 0px;}
}
#cookie-notice {
font-size: larger;
padding: 0.5rem 1rem;
display: none;
text-align: center;
position: fixed;
bottom: 0; left: 20px;
padding-top: 40px;
padding-bottom: 40px;
width: 100%;
background: rgb(70, 70, 70);
color: rgba(255,255,255,0.8);
}
#cookie-notice a {
font-weight: 600;
display: inline-flex;
cursor: pointer;
margin-left: 0.5rem;
}
#cookie-notice-accept {
color:rgb(86, 228, 58)
}
#cookie-notice-deny {
color:rgb(243, 34, 34)
}
@media (max-width: 767px) {
#cookie-notice span { display: block; padding-top: 3px; margin-bottom: 1rem; }
#cookie-notice a { position: relative; bottom: 4px; }
#cookie-notice { left: 0px; }
}