22 lines
386 B
CSS
22 lines
386 B
CSS
button.action-button {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
color: white;
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.action-button:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
button.action-button:active {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
@media screen and (max-width: 558px) {
|
|
.action-button {
|
|
display: none;
|
|
}
|
|
}
|