You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/css/buttons.css

27 lines
450 B
CSS

.btn span {
display: inline-block;
padding: 0.5em;
border: 2px solid #7fd0ed;
border-radius: 4px;
}
.btn {
border-radius: 4px;
background-color: #fff;
padding: 2px;
border: none;
}
.btn:hover, .btn:focus {
cursor: pointer;
outline: none;
background-color: #f1fafd;
}
.btn:active {
outline: 2px dashed #acdbf5;
}
.btn.selected span,
.btn:active span {
background-color: #7fd0ed;
border: 2px solid #acdbf5;
color: #fff;
}