style.css 789 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. * {
  2. margin: 0;
  3. }
  4. html, body {
  5. font-size: 18px;
  6. font-family: sans-serif;
  7. }
  8. .container {
  9. max-width: 1200px;
  10. margin: 30px auto;
  11. background: #f1f1f1;
  12. padding: 30px;
  13. }
  14. h1 {
  15. text-align: center;
  16. margin-bottom: 40px;
  17. }
  18. button {
  19. background: none;
  20. border: 1px solid black;
  21. border-radius: 4px;
  22. padding: 10px 20px;
  23. font-size: .9rem;
  24. }
  25. button:hover {
  26. background: orangered;
  27. cursor: pointer;
  28. }
  29. button:active {
  30. background: #000;
  31. color: #fff;
  32. }
  33. .slider {
  34. border: 2px solid black;
  35. width: 256px;
  36. height: 256px;
  37. margin: 20px auto;
  38. overflow: hidden;
  39. }
  40. .slider-line {
  41. width: 1024px;
  42. height: 256px;
  43. display: flex;
  44. background: orange;
  45. position: relative;
  46. left: 0;
  47. transition: all ease 1s;
  48. }