style.css 470 B

123456789101112131415161718192021222324252627
  1. body {
  2. display: flex;
  3. justify-content: center;
  4. flex-direction: row;
  5. }
  6. .trafficLight {
  7. width: 20vh;
  8. height: 20vh;
  9. border: 1px solid black;
  10. border-radius: 50%;
  11. background-color: white;
  12. }
  13. .buttonTraficLight {
  14. width: 20vh;
  15. height: 20vh;
  16. background-color: white;
  17. border-radius: 25%;
  18. margin: 20vh 0 0 5vh;
  19. font-size: 24px;
  20. font-family: Georgia sans-serif;
  21. }
  22. #placeForTrafficLight {
  23. background-color: black;
  24. }