style.css 576 B

123456789101112131415161718192021222324252627282930313233343536
  1. .list {
  2. display: flex;
  3. justify-content: center;
  4. flex-direction: column;
  5. }
  6. .li {
  7. text-decoration: none;
  8. }
  9. .div {
  10. display: flex;
  11. align-items: center;
  12. }
  13. .button {
  14. margin: 5px 15px;
  15. height: 25px;
  16. border: 1px solid tan;
  17. border-radius: 3px;
  18. cursor: pointer;
  19. background-color: cornsilk;
  20. color: darkred;
  21. position: relative;
  22. font-weight: 600;
  23. left: 10px;
  24. }
  25. .button:hover {
  26. height: 25px;
  27. border: 1px solid darkred;
  28. border-radius: 3px;
  29. cursor: pointer;
  30. background-color: darkred;
  31. color: white;
  32. }