mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
15 lines
189 B
CSS
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;
|
|
}
|