58 lines
No EOL
880 B
CSS
58 lines
No EOL
880 B
CSS
/* General Reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Body Styling */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Header Styling */
|
|
header {
|
|
background: #333;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Navigation Styling */
|
|
nav {
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
nav a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
margin: 0 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: #007BFF;
|
|
}
|
|
|
|
/* Main Content Styling */
|
|
main {
|
|
background: #fff;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Footer Styling */
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
background: #333;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
} |