custom.css 851 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. h1 {
  2. font-size: 2.25rem;
  3. }
  4. h2 {
  5. font-size: 1.75rem;
  6. }
  7. h3 {
  8. font-size: 1.45rem;
  9. }
  10. .cookie_alert {
  11. position: fixed;
  12. display: flex;
  13. width: 100%;
  14. min-height: 70px;
  15. background-color: var(--color-background-secondary);
  16. color: var(--color-foreground-primary);
  17. border-top: 1px solid var(--color-background-border);
  18. bottom: 0;
  19. left: 0;
  20. z-index: 99999;
  21. }
  22. .cookie_container {
  23. display: flex;
  24. align-items: center;
  25. width: 700px;
  26. max-width: calc(100% - 28px);
  27. margin: auto;
  28. }
  29. .cookie_alert p {
  30. flex: 1;
  31. }
  32. .cookie_alert button {
  33. background-color: transparent;
  34. border: none;
  35. width: 26px;
  36. height: 26px;
  37. padding: 0;
  38. cursor: pointer;
  39. }
  40. .cookie_alert button svg .cls-1 {
  41. stroke: var(--color-foreground-primary);
  42. }
  43. .cookie_alert button svg {
  44. width: 100%;
  45. }