portpulse-navigator / style.css
alphonse86's picture
Modify the existing port trade dashboard to add a new derived metric called:
1e02b96 verified
Raw
History Blame Contribute Delete
941 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Animation for metric cards */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.metric-card {
animation: fadeInUp 0.5s ease-out;
}
/* HTBI annotation styling */
.htbi-annotation {
background-color: rgba(239, 68, 68, 0.1);
border-left: 3px solid #ef4444;
padding: 0.5rem;
margin-bottom: 0.5rem;
}
/* Tooltip styling */
.plotly-notifier {
font-family: 'Inter', sans-serif !important;
}