style.css 536 B

123456789101112131415161718192021222324252627282930
  1. .traffic-lightS {
  2. display: flex;
  3. }
  4. .lights {
  5. margin: 20px;
  6. height: 400px;
  7. background-color: gray;
  8. border-radius: 40%;
  9. width: 150px;
  10. display: flex;
  11. flex-direction: column;
  12. justify-content: center;
  13. align-items: center;
  14. }
  15. .oneColor {
  16. background-color: black;
  17. width: 100px;
  18. height: 100px;
  19. border-radius: 50%;
  20. margin: 10px;
  21. font-size: 20px;
  22. color: yellow;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. }
  27. #knopka {
  28. background-color: tomato;
  29. }