thors1's picture
Initial DeepSite commit
a642652 verified
/* Additional custom styles for MC Flow Builder */
/* Smooth transitions */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}
/* Focus states */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
outline: 2px solid #089E97;
outline-offset: 2px;
}
/* Custom selection */
::selection {
background-color: rgba(8, 158, 151, 0.2);
color: #0f172a;
}
/* Drag ghost image customization */
.dragging {
opacity: 0.8;
transform: scale(1.02);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Block hover states */
.block-item:hover {
border-color: #089E97;
background-color: #f8fafc;
}
/* Step header hover */
.step-header:hover {
background-color: #f8fafc;
}
/* Input focus ring animation */
input:focus,
textarea:focus,
select:focus {
transition: all 0.2s ease-in-out;
}
/* AI Copilot button animation */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-5px); }
}
.ai-copilot-active:hover {
animation: float 2s ease-in-out infinite;
}
/* Chart animations */
canvas {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
aside {
width: 260px;
}
}
@media (max-width: 768px) {
aside