lab-development-imb/web/13/demos/04_styles_aria.css

21 lines
355 B
CSS

.custom-button {
float: left;
background-color: #0078D4;
color: white;
padding: 0.6em 1.2em;
font-size: 1rem;
border-radius: 6px;
cursor: pointer;
margin: 0px 5px;
}
.custom-button:hover,
.custom-button:focus {
background-color: #005A9E;
outline: 2px solid #005A9E;
outline-offset: 2px;
}
.custom-button:active {
background-color: #004578;
}