1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-21 06:48:04 +00:00

CSS: renamed .btn to .button

This commit is contained in:
2023-06-27 17:21:54 +02:00
parent 685ea78376
commit 0e4c5d474b
25 changed files with 68 additions and 68 deletions

View File

@ -65,38 +65,38 @@ select:disabled {
color: #444;
}
.btn {
.button {
background-color: #00008b;
border: 1px solid #00008b;
padding: 0.5rem;
border-radius: var(--radius);
color: #fff;
}
.btn:focus,
.btn:active {
.button:focus,
.button:active {
box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.2);
outline: none;
}
.btn.danger {
.button.danger {
background-color: #c00;
border: 1px solid #c00;
}
.btn.danger:active,
.btn.danger:focus {
.button.danger:active,
.button.danger:focus {
box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}
.btn.secondary {
.button.secondary {
border: 1px solid #ccc;
background-color: #fff;
color: inherit;
}
.btn.secondary:hover {
.button.secondary:hover {
background-color: #eee;
}
.btn.secondary:active {
.button.secondary:active {
background-color: #ddd;
}
.btn:disabled {
.button:disabled {
opacity: 0.5;
cursor: not-allowed;
}