15 lines
281 B
CSS
15 lines
281 B
CSS
.toggle-button {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border: none;
|
|
font-size: 16px;
|
|
padding: 5px 10px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.toggle-button:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
border-radius: 5px;
|
|
}
|