Files
frontend-bootcamp/step1-04/src/components/Button.css
2019-02-15 16:55:03 -08:00

15 lines
189 B
CSS

.Button {
background: #0078d4;
color: white;
padding: 5px 10px;
outline: none;
border: none;
}
.Button:hover {
background: #005a9e;
}
.Button:active {
background: #004578;
}