App.scss 677 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .App {
  2. text-align: center;
  3. .Gallery{
  4. max-width: 80%;
  5. margin-top:40px;
  6. img{
  7. width: 400px;
  8. height:200px;
  9. border:3px solid blue;
  10. }
  11. button{
  12. width: 100px;
  13. height: 25px;
  14. margin: 20px;
  15. border:1px solid yellow;
  16. border-radius: 10px;
  17. bacKground-color:pink;
  18. }
  19. .Dots{
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: center;
  23. margin-top:10px;
  24. .DotsFon {
  25. margin: 10px;
  26. width: 17px;
  27. height: 17px;
  28. background-color: black;
  29. border-radius: 50%;
  30. }
  31. .DotsFon--active {
  32. background-color: red;
  33. }
  34. }
  35. }
  36. }