42 lines
726 B
CSS
42 lines
726 B
CSS
|
|
body {
|
|
background-color: #F4F7F6;
|
|
color: #333333;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #4A90E2, #50E3C2);
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
border-radius: 0 0 1rem 1rem;
|
|
}
|
|
|
|
.schedule-item {
|
|
background-color: #FFFFFF;
|
|
border-radius: 0.5rem;
|
|
padding: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
border-left: 5px solid #4A90E2;
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.schedule-item:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.schedule-time {
|
|
font-weight: bold;
|
|
color: #4A90E2;
|
|
}
|
|
|
|
.footer {
|
|
padding: 2rem 0;
|
|
margin-top: 2rem;
|
|
background-color: #FFFFFF;
|
|
}
|