Cs1
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #fdfbfb, #ebedee);
margin: 0;
padding: 0;
}
/* Main Container */
.main-container {
display: flex;
flex-direction: column;
height: 100vh;
}
/* Top Header */
.top-row {
background-color: #2c3e50;
padding: 20px;
text-align: center;
color: white;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.top-row h1 {
font-size: 28px;
letter-spacing: 1px;
}
/* Divider */
.divider {
margin: 0;
border: none;
border-top: 2px solid #ccc;
}
/* Button Section */
.button-box {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
background-color: #ffffff;
padding: 40px 20px;
}
.menu-button {
padding: 15px 30px;
font-size: 18px;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
font-weight: bold;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.menu-button.add {
background-color: #27ae60;
color: white;
}
.menu-button.view {
background-color: #2980b9;
color: white;
}
.menu-button:hover {
transform: translateY(-3px);
opacity: 0.9;
}
/* Footer */
.footer {
background-color: #ecf0f1;
text-align: center;
padding: 10px;
font-size: 14px;
color: #555;
border-top: 1px solid #ccc;
}
Comments
Post a Comment