216 lines
3.7 KiB
CSS
216 lines
3.7 KiB
CSS
body {
|
|
background-color: #F9FAFB;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.navbar-brand {
|
|
color: #4F46E5 !important;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #4F46E5, #6366F1);
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #4F46E5;
|
|
border-color: #4F46E5;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #4338CA;
|
|
border-color: #4338CA;
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
border-color: #4F46E5;
|
|
color: #4F46E5;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.btn-outline-primary:hover {
|
|
background-color: #4F46E5;
|
|
color: white;
|
|
}
|
|
|
|
.btn-light {
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #EEF2FF;
|
|
color: #4F46E5;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.feature-icon i {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
/* Timetable Demo Styles */
|
|
.timetable-container {
|
|
padding: 2rem;
|
|
background-color: #fff;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.timetable-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.timetable-header h1 {
|
|
color: #111827;
|
|
}
|
|
|
|
.timetable-table {
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.timetable-table th, .timetable-table td {
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
padding: 1rem;
|
|
min-width: 120px;
|
|
}
|
|
|
|
.timetable-table thead th {
|
|
background-color: #EEF2FF;
|
|
color: #4338CA;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.day-header {
|
|
background-color: #F9FAFB;
|
|
font-weight: bold;
|
|
width: 100px;
|
|
}
|
|
|
|
.timetable-cell {
|
|
background-color: #fff;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.timetable-cell:hover {
|
|
background-color: #F3F4F6;
|
|
}
|
|
|
|
.timetable-cell strong {
|
|
display: block;
|
|
color: #4F46E5;
|
|
}
|
|
|
|
.timetable-cell span {
|
|
font-size: 0.875rem;
|
|
color: #6B7280;
|
|
}
|
|
|
|
.break-cell {
|
|
background-color: #F3F4F6;
|
|
font-style: italic;
|
|
color: #6B7280;
|
|
}
|
|
|
|
@media print {
|
|
body * {
|
|
visibility: hidden;
|
|
}
|
|
.printable-area, .printable-area * {
|
|
visibility: visible;
|
|
}
|
|
.printable-area {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
.btn {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* New Timetable Styles */
|
|
.timetable-table {
|
|
border-collapse: separate;
|
|
border-spacing: 5px;
|
|
}
|
|
|
|
.time-col {
|
|
width: 100px;
|
|
font-weight: bold;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.timetable-cell-container {
|
|
padding: 2px !important;
|
|
background-color: #F9FAFB;
|
|
}
|
|
|
|
.timetable-cell {
|
|
border-radius: 8px;
|
|
padding: 12px 8px;
|
|
color: #111827;
|
|
height: 100%;
|
|
min-height: 80px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.timetable-cell:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.subject-name {
|
|
font-weight: bold;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.teacher-name {
|
|
font-size: 0.8rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.break-cell {
|
|
background-color: #F3F4F6;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.bg-light-blue {
|
|
background-color: #E0E7FF;
|
|
}
|
|
|
|
.bg-light-green {
|
|
background-color: #e0f2e9;
|
|
}
|
|
|
|
.bg-light-purple {
|
|
background-color: #e9e7f5;
|
|
} |