_footer.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #footer{
  2. margin-bottom: 45px;
  3. width: 100%;
  4. background: $light-grey;
  5. .block{
  6. @include inlineflex;
  7. width: 100%;
  8. margin: 20px 0;
  9. -webkit-box-pack: center;
  10. -ms-flex-pack: center;
  11. justify-content: center;
  12. p{
  13. padding: 0 20px;
  14. img{
  15. width: 100%;
  16. max-width: 150px;
  17. height: auto;
  18. }
  19. &:nth-of-type(1){
  20. img{
  21. float: right;
  22. }
  23. }
  24. &:not(:nth-of-type(1)){
  25. border-left: 1px solid black;
  26. }
  27. }
  28. }
  29. }
  30. .opt-out{
  31. height: auto;
  32. transform: translateY(70%);
  33. z-index: 9999;
  34. position: fixed;
  35. bottom: 0;
  36. width: 100%;
  37. background: rgba(255,255,255,.5 );
  38. text-align: center;
  39. font-family: $Bold;
  40. transition: transform 0.3s ease, background 0.3s ease;
  41. iframe{
  42. height: 110px;
  43. }
  44. p{
  45. cursor: pointer;
  46. font-size: 12px;
  47. }
  48. img{
  49. width: 20px;
  50. height: auto;
  51. cursor: pointer;
  52. }
  53. &.open{
  54. transform: translateX(0);
  55. background: white;
  56. transition: all 0.3s ease;
  57. img{
  58. transform: rotate(180deg);
  59. }
  60. }
  61. }