Commit before extracting colors to variables.

This commit is contained in:
Greg Sarjeant 2025-06-09 15:38:28 -04:00
parent 3690317206
commit f566e2a638

View File

@ -194,30 +194,32 @@ label {
} }
.upload-btn { .upload-btn {
background-color: #4299e1; background-color: #f0f9ff;
color: white; color: #1e40af;
border: none; border: 1px solid #4299e1;
padding: 10px 20px; padding: 10px 20px;
border-radius: 6px; border-radius: 6px;
font-size: 15px; font-size: 15px;
font-weight: 600; font-weight: 600;
cursor: pointer; cursor: pointer;
width: 100%; width: 100%;
transition: background-color 0.3s ease; transition: all 0.2s ease;
margin-top: 12px; margin-top: 12px;
box-sizing: border-box;
} }
.upload-btn:hover { .upload-btn:hover {
background-color: #3182ce; background-color: #dbeafe;
border-color: #3182ce;
} }
.upload-btn:active { .upload-btn:active {
background-color: #2c5282; background-color: #bfdbfe;
} }
.upload-btn:focus { .upload-btn:focus {
outline: none; outline: none;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3); box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.1);
} }
.security-info { .security-info {