62 lines
945 B
CSS
62 lines
945 B
CSS
body {
|
|
background-color: #fefefe;
|
|
}
|
|
|
|
.header {
|
|
background: linear-gradient(to right, #00796B, #004D40);
|
|
color: white;
|
|
padding: 40px 20px;
|
|
text-align: center;
|
|
border-radius: 0 0 20px 20px;
|
|
}
|
|
|
|
.welcome-card {
|
|
background: #fff;
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
|
|
margin-top: -40px;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.welcome-card img {
|
|
width: 100px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.welcome-card h4 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.menu-grid {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.menu-card {
|
|
background-color: white;
|
|
border-radius: 15px;
|
|
padding: 25px 10px;
|
|
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
height: 100%;
|
|
}
|
|
|
|
.menu-card:hover {
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.menu-card img {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.menu-card h5 {
|
|
margin-top: 12px;
|
|
font-size: 1.1rem;
|
|
color: #212121;
|
|
}
|