You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
546 B
36 lines
546 B
9 years ago
|
#controls {
|
||
|
float: left;
|
||
|
padding-top: 30px;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
background-color: gray;
|
||
|
border-radius: 15px;
|
||
8 years ago
|
color: white;
|
||
|
cursor: pointer;
|
||
|
font-size: 2em;
|
||
|
font-weight: bold;
|
||
|
margin: 90px 40px;
|
||
9 years ago
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#traffic-light {
|
||
|
background-color: #ababab;
|
||
|
border-radius: 40px;
|
||
8 years ago
|
float: left;
|
||
9 years ago
|
margin: 30px 0;
|
||
8 years ago
|
height: 550px;
|
||
9 years ago
|
padding: 20px;
|
||
8 years ago
|
width: 200px;
|
||
9 years ago
|
}
|
||
|
|
||
|
.bulb {
|
||
|
background-color: #111;
|
||
|
border-radius: 50%;
|
||
|
margin: 25px auto;
|
||
8 years ago
|
height: 150px;
|
||
|
transition: background 300ms;
|
||
|
width: 150px;
|
||
|
}
|