style: replace blue buttons with original #E07D54 color

Override Bootstrap btn-primary and btn-outline-primary to match the original project's button color.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Your Name
2026-05-11 16:59:22 +03:00
parent 61d12f4972
commit dca8a0dbcf

View File

@@ -40,6 +40,29 @@ button {
margin-bottom: 5px; margin-bottom: 5px;
} }
.btn-primary {
background-color: #E07D54;
border-color: #E07D54;
color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background-color: #c86a3d;
border-color: #c86a3d;
color: #fff;
}
.btn-outline-primary {
color: #E07D54;
border-color: #E07D54;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
background-color: #E07D54;
border-color: #E07D54;
color: #fff;
}
.card { .card {
margin: 10px; margin: 10px;
border-radius: 15px; border-radius: 15px;