36 lines
546 B
CSS
Raw Normal View History

2015-11-03 13:12:44 -07:00
#controls {
float: left;
padding-top: 30px;
}
.button {
background-color: gray;
border-radius: 15px;
2016-11-11 05:49:28 -08:00
color: white;
cursor: pointer;
font-size: 2em;
font-weight: bold;
margin: 90px 40px;
2015-11-03 13:12:44 -07:00
padding: 20px;
text-align: center;
}
#traffic-light {
background-color: #ababab;
border-radius: 40px;
2016-11-11 05:49:28 -08:00
float: left;
2015-11-03 13:12:44 -07:00
margin: 30px 0;
2016-11-11 05:49:28 -08:00
height: 550px;
2015-11-03 13:12:44 -07:00
padding: 20px;
2016-11-11 05:49:28 -08:00
width: 200px;
2015-11-03 13:12:44 -07:00
}
.bulb {
background-color: #111;
border-radius: 50%;
margin: 25px auto;
2016-11-11 05:49:28 -08:00
height: 150px;
transition: background 300ms;
width: 150px;
}