Files
frontend-bootcamp/step1-04/final/src/components/Button.css
2019-02-21 14:29:33 -08:00

16 lines
207 B
CSS

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