24 lines
358 B
CSS
24 lines
358 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
button {
|
|
border: 2px;
|
|
border-style: solid;
|
|
border-color: rgb(240, 120, 24);
|
|
width: 8em;
|
|
height: 3em;
|
|
color: rgb(255, 255, 255);
|
|
background-color: rgb(240, 120, 24);
|
|
}
|
|
|
|
button:hover {
|
|
color: rgb(240, 120, 24);
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
#click_button {
|
|
display: block;
|
|
margin: 16em auto;
|
|
}
|