ko-fi.css 419 B

1234567891011121314151617181920212223242526272829
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. height: 100%;
  6. }
  7. main {
  8. display: flex;
  9. flex-direction: column;
  10. min-height: 100%;
  11. justify-content: center;
  12. align-items: center;
  13. text-align: center;
  14. }
  15. a {
  16. text-decoration: none;
  17. color: initial;
  18. transition: transform 0.2s;
  19. }
  20. a:hover {
  21. transform: scale(1.1);
  22. transition: transform 0.5s;
  23. color: initial;
  24. text-decoration: initial;
  25. }