72 lines
1.6 KiB
CSS
72 lines
1.6 KiB
CSS
/* Custom CSS für die Statistik-Admin-Seite */
|
|
|
|
.field-color {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.field-color input[type="color"] {
|
|
width: 60px !important;
|
|
height: 40px !important;
|
|
border: 2px solid #ddd !important;
|
|
border-radius: 8px !important;
|
|
cursor: pointer !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.field-color input[type="text"] {
|
|
width: 120px !important;
|
|
font-family: 'Courier New', monospace !important;
|
|
font-size: 14px !important;
|
|
font-weight: bold !important;
|
|
text-transform: uppercase !important;
|
|
letter-spacing: 1px !important;
|
|
padding: 8px 12px !important;
|
|
border: 2px solid #ddd !important;
|
|
border-radius: 6px !important;
|
|
background-color: #f8f9fa !important;
|
|
}
|
|
|
|
.field-color input[type="text"]:focus {
|
|
border-color: #007cba !important;
|
|
box-shadow: 0 0 0 1px #007cba !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
.color-preview {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
border: 3px solid #fff;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.color-picker-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.color-picker-label {
|
|
font-weight: bold;
|
|
color: #333;
|
|
min-width: 100px;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.field-color {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.color-picker-container {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
}
|
|
}
|