footprint.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .footprint_cookie {
  2. width: 100%;
  3. position: fixed;
  4. bottom: 0px;
  5. background-color: #f0f0f0;
  6. font-family: 'Ubuntu', sans-serif;
  7. }
  8. .footprint_cookie span {
  9. max-width: 70%;
  10. color: #202020;
  11. padding: 20px;
  12. text-align: left;
  13. font-size: 1rem;
  14. float: left;
  15. }
  16. .footprint_accept {
  17. color: white;
  18. background-color: #5a9e4b;
  19. font-size: 0.8rem;
  20. font-weight: 600;
  21. text-transform: uppercase;
  22. float: right;
  23. font-family: 'Ubuntu', sans-serif;
  24. margin-right: 10px;
  25. }
  26. .footprint_more {
  27. color: white;
  28. background-color: #f93934;
  29. font-size: 0.8rem;
  30. font-weight: 600;
  31. text-transform: uppercase;
  32. float: right;
  33. font-family: 'Ubuntu', sans-serif;
  34. }
  35. .footprint_close {
  36. width: 100%;
  37. position: fixed;
  38. background-color: #cbc3c3;
  39. font-family: 'Ubuntu', sans-serif;
  40. text-align: center;
  41. }
  42. .close_soon {
  43. background-color: #D7D281;
  44. }
  45. .footprint_close span {
  46. display: block;
  47. max-width: 100%;
  48. color: #141415;
  49. padding: 10px;
  50. text-align: center;
  51. font-size: 1rem;
  52. }
  53. .footprint_close span.soon {
  54. color: #141415;
  55. }
  56. @media all and (max-width: 1037px) {
  57. .footprint_accept, .footprint_more {width: auto !important;}
  58. }
  59. @media all and (max-width: 996px) {
  60. .footprint_cookie span {
  61. width: 100%;
  62. max-width: 100%;
  63. float: none;
  64. clear: both;
  65. display: block;
  66. }
  67. .footprint_accept, .footprint_more {width: auto !important; float: none; clear: both; margin-left: 20px; padding-left: 1rem; padding-right: 1rem;}
  68. }