1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- *{
- box-sizing: border-box;
- margin: 0;
- }
- body{
- padding: 50px;
- display: flex;
- justify-content: center;
- }
- .carTrafficLight{
- width: 100px;
- height: 250px;
- background-color: darkcyan;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- div{
- width: 70px;
- height: 70px;
- border-radius: 50%;
- border: 2px solid black;
- text-align: center;
- padding: 14px;
- }
- .light-red{
- background-color: red;
-
- }
- .light-yellow{
- background-color: yellow;
- }
- .light-green{
- background-color: green;
- }
- .light{
- background-color: darkcyan;
- }
- }
- .pedestrianTrafficLight{
- width: 100px;
- height: 180px;
- background-color: darkcyan;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- .light-red{
- background-color: red;
-
- }
- .light-green{
- background-color: green;
- }
- .light{
- background-color: darkcyan;
- width: 70px;
- height: 70px;
- border-radius: 50%;
- border: 2px solid black;
- text-align: center;
- padding: 14px;
- }
- }
- .btnTurnOn{
- width: 100px;
- height: 30px
- }
- span{
- font-size: 30px;
- }
|