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.

style.css 519B

123456789101112131415161718192021222324252627282930313233343536373839
  1. html, body {
  2. overflow: hidden;
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. margin: 0px;
  7. }
  8. #games {
  9. padding: 24px;
  10. }
  11. #games a {
  12. margin: 12px;
  13. display: block;
  14. }
  15. #overlay {
  16. transition: opacity 0.5s, transform 0.5s;
  17. opacity: 0;
  18. pointer-events: none;
  19. position: absolute;
  20. top: 0px;
  21. left: 0px;
  22. width: 100%;
  23. height: 100%;
  24. background-color: black;
  25. color: white;
  26. transform: scale(2);
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. }
  31. #overlay.active {
  32. opacity: 1;
  33. transform: scale(1);
  34. }