anoderb
style: redesign Daily Scrapper UI/UX to match Sikomo layout and color palette
c995585
Raw
History Blame Contribute Delete
2.53 kB
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
/* Sikomo-style card panel */
.card-panel {
background: #ffffff;
border-radius: 1rem;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(226, 232, 240, 0.6);
}
/* Clean form inputs */
.form-input {
appearance: none;
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid #cbd5e1;
border-radius: 0.5rem;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
font-size: 0.875rem;
color: #1e293b;
background: #ffffff;
transition: all 150ms ease;
}
.form-input::placeholder {
color: #94a3b8;
}
.form-input:focus {
outline: none;
border-color: #1e3a8a;
box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}
/* Select dropdown styling */
.form-select {
appearance: none;
width: 100%;
padding: 0.5rem 2rem 0.5rem 0.75rem;
border: 1px solid #cbd5e1;
border-radius: 0.5rem;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
font-size: 0.875rem;
color: #1e293b;
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
transition: all 150ms ease;
}
.form-select:focus {
outline: none;
border-color: #1e3a8a;
box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}
}
/* Terminal Scrollbar (dark context) */
.terminal-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.terminal-scrollbar::-webkit-scrollbar-track {
background: rgba(15, 23, 42, 0.8);
}
.terminal-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
border-radius: 3px;
}
.terminal-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.3);
}
/* General Scrollbar (light context) */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(148, 163, 184, 0.4);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(148, 163, 184, 0.6);
}
/* Smooth transitions */
* {
transition-property: color, background-color, border-color, box-shadow;
transition-timing-function: ease;
}