123456789101112131415161718192021222324252627 |
- body {
- display: flex;
- justify-content: center;
- flex-direction: row;
- }
- .trafficLight {
- width: 20vh;
- height: 20vh;
- border: 1px solid black;
- border-radius: 50%;
- background-color: white;
- }
- .buttonTraficLight {
- width: 20vh;
- height: 20vh;
- background-color: white;
- border-radius: 25%;
- margin: 20vh 0 0 5vh;
- font-size: 24px;
- font-family: Georgia sans-serif;
- }
- #placeForTrafficLight {
- background-color: black;
- }
|