timepulse/public/style/style.css
2025-08-08 20:54:38 -04:00

43 lines
796 B
CSS

/* Custom Styles for TimeTracker */
body {
font-family: 'Inter', sans-serif;
}
.hidden {
display: none;
}
/* Modal Styles */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal-content {
background: white;
padding: 2rem;
border-radius: 0.5rem;
width: 90%;
max-width: 500px;
}
/* Tab Styles */
.tab-btn {
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
border-bottom: 3px solid transparent;
}
.active-tab {
border-color: #2563EB; /* This is Tailwind's blue-600 */
color: #1E40AF; /* This is Tailwind's blue-800 */
font-weight: 500;
}