style.css 620 B

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