You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

42 regels
629 B

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. .button {
  5. text-decoration: none;
  6. box-shadow: 0 8px 0 0 black;
  7. transition: all .3s;
  8. border: 8px black solid;
  9. line-height: 100%;
  10. height: 70px;
  11. width: 70px;
  12. border-width: 2px;
  13. border-radius: 100px;
  14. cursor: pointer;
  15. color: black;
  16. font-size: 26px;
  17. background-color: #ffffff59;
  18. }
  19. .button:hover {
  20. background-color: #fdec50ff;
  21. }
  22. .button:active {
  23. box-shadow: 0 0 0 0 black;
  24. }
  25. .button--close {
  26. right: 24px;
  27. padding-top: 10px;
  28. position: absolute;
  29. }
  30. .button--screened {
  31. top: 74px;
  32. }
  33. .compilation {
  34. cursor: pointer;
  35. max-width: 420px;
  36. }