forked from WEB-IMB-WS2526/lab-development-imb
21 lines
355 B
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;
|
|
} |