This commit is contained in:
2026-04-06 18:44:02 +05:00
commit d775fbb9ba
431 changed files with 31234 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
.btn-dark-green:disabled {
background-color: #6c757d;
cursor: not-allowed;
}
.btn-outline-mint {
background-color: transparent;
border: 1px solid #2c5e2e;
color: #2c5e2e;
border-radius: 8px;
transition: all 0.2s ease;
}
.btn-outline-mint:hover {
background-color: #2c5e2e;
color: white;
}
.form-control:focus, .form-check-input:focus {
border-color: var(--dark-green);
outline: 0;
box-shadow: 0 0 0 .25rem #2a2a2254;
}
.form-check-input:checked {
background-color: var(--dark-green);
border-color: var(--dark-green);
}