Csss
/* Global Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
}
/* Main Container */
.main-container {
width: 100%;
max-width: 700px;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
/* Title Section */
.top-row h1 {
text-align: center;
font-size: 24px;
margin-bottom: 10px;
}
/* Divider */
.divider {
border: none;
border-top: 2px solid #ccc;
margin: 10px 0 20px;
}
/* Button Section */
.button-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
margin: 30px 0;
}
.menu-button {
padding: 10px 25px;
text-decoration: none;
font-weight: bold;
font-size: 16px;
border-radius: 5px;
transition: background-color 0.3s;
}
.menu-button.add {
background-color: #4CAF50;
color: white;
}
.menu-button.view {
background-color: #2196F3;
color: white;
}
.menu-button:hover {
opacity: 0.85;
}
/* Footer */
.footer {
text-align: center;
font-size: 13px;
margin-top: 30px;
padding-top: 10px;
border-top: 1px solid #ddd;
color: #777;
}
Comments
Post a Comment