Guest User

Untitled

a guest
Feb 20th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <body>
  5. <style>
  6. @font-face {
  7. font-family: "mainfont";
  8. src: url("{{ url_for('static', filename='geomanist-regular.ttf') }}");
  9. }
  10. body {
  11. font-family: 'mainfont', sans-serif;
  12. }
  13. .cookielabel_default{
  14. display: flex;
  15. background-color: #28282B;
  16. position: -webkit-sticky; /* Safari */
  17. z-index: 1000;
  18. position: sticky;
  19. bottom: 0;
  20. overflow-x: hidden;
  21. }
  22. .cookielabel_p{
  23. position: relative;
  24. left: 20%;
  25. right: 20%;
  26. color: white;
  27. font-size: 15px;
  28. }
  29. .cookielabel_accept{
  30. position: relative;
  31. left: 70%;
  32. color: black;
  33. background-color: white;
  34. font-size: 15px;
  35. height: 90%;
  36. margin: auto 0; /* center vertically (idk why, is that just what margin is?) */
  37. }
  38.  
  39. </style>
  40. <div class="cookielabel_default">
  41. <p class="cookielabel_p">This website uses cookies.</p>
  42. <button class="cookielabel_accept">Accept</button>
  43. </div>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment