Advertisement
clickio

Top Mobile horizontal sticky presourse

Feb 2nd, 2021
831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <style>
  2. #lx_677230 {
  3.     bottom: auto !important;
  4.     top: 0 !important;
  5.     transition: none !important;
  6. }
  7.  
  8. #lx_677230 .lx_close_button {
  9.     bottom: -30px !important;
  10.     top: auto !important;
  11.     box-shadow: -1px 1px 0 0 rgba(0, 0, 0, 0.2) !important;
  12.     border-radius: 0 0 12px 0 !important;
  13. }
  14.  
  15. #lx_677230 .lx_close_button:before {
  16. transform: rotate(45deg) !important;
  17.     border-left: 2px solid #000 !important;
  18.     border-top: 2px solid #000 !important;
  19.     border-bottom: 0 !important;
  20.     bottom: -3px;
  21.     top: auto !important;
  22. }
  23.  
  24. #lx_677230 .lx_noclick {
  25.     bottom: -55px !important;
  26.     top: auto !important;
  27. }
  28. </style>
  29. <script>
  30. (function(d){
  31.     let s = "#lx_677230";
  32.     let e = d.querySelector(s);
  33.     e.addEventListener("click", function(ev){
  34.         let b = e.querySelector(".lx_close_button");
  35.         if(b === ev.target) { e.remove(); }
  36.     });
  37. })(document);
  38. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement