| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .footprint_cookie {
- width: 100%;
- position: fixed;
- bottom: 0px;
- background-color: #f0f0f0;
- font-family: 'Ubuntu', sans-serif;
- }
- .footprint_cookie span {
- max-width: 70%;
- color: #202020;
- padding: 20px;
- text-align: left;
- font-size: 1rem;
- float: left;
- }
- .footprint_accept {
- color: white;
- background-color: #5a9e4b;
- font-size: 0.8rem;
- font-weight: 600;
- text-transform: uppercase;
- float: right;
- font-family: 'Ubuntu', sans-serif;
- margin-right: 10px;
- }
- .footprint_more {
- color: white;
- background-color: #f93934;
- font-size: 0.8rem;
- font-weight: 600;
- text-transform: uppercase;
- float: right;
- font-family: 'Ubuntu', sans-serif;
- }
- .footprint_close {
- width: 100%;
- position: fixed;
- background-color: #cbc3c3;
- font-family: 'Ubuntu', sans-serif;
- text-align: center;
- }
- .close_soon {
- background-color: #D7D281;
- }
- .footprint_close span {
- display: block;
- max-width: 100%;
- color: #141415;
- padding: 10px;
- text-align: center;
- font-size: 1rem;
- }
- .footprint_close span.soon {
- color: #141415;
- }
- @media all and (max-width: 1037px) {
- .footprint_accept, .footprint_more {width: auto !important;}
- }
- @media all and (max-width: 996px) {
- .footprint_cookie span {
- width: 100%;
- max-width: 100%;
- float: none;
- clear: both;
- display: block;
- }
-
- .footprint_accept, .footprint_more {width: auto !important; float: none; clear: both; margin-left: 20px; padding-left: 1rem; padding-right: 1rem;}
- }
|