| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .btn {
- background: #2b3444;
- border: 1px solid #2b3444;
- color: #e5e7eb;
- font-size: 14px;
- padding: 6px 12px;
- border-radius: 6px;
- cursor: pointer;
- user-select: none;
- display: inline-flex;
- align-items: center;
- gap: 6px;
- transition: all 0.18s ease;
- }
- .btn:hover {
- background: #3a475c;
- border-color: #3a475c;
- }
- .btn:active {
- transform: translateY(1px);
- background: #1f2937;
- border-color: #1f2937;
- }
- .btn:disabled {
- opacity: 0.4;
- cursor: not-allowed;
- transform: none;
- }
- .btn-blue {
- background: #2563eb;
- border: 1px solid #2563eb;
- color: white;
- }
- .btn-blue:hover {
- background: #1d4ed8;
- border-color: #1d4ed8;
- }
- .btn-blue:active {
- transform: translateY(1px);
- background: #1e40af;
- }
- .btn-red {
- background: #ef4444;
- border: 1px solid #ef4444;
- color: white;
- }
- .btn-red:hover {
- background: #dc2626;
- border-color: #dc2626;
- }
- .btn-red:active {
- transform: translateY(1px);
- background: #b91c1c;
- }
|