87 lines
1.0 KiB
CSS
87 lines
1.0 KiB
CSS
|
/* Basic Reset */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/* Container Styling */
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
max-width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
/* Header Styling */
|
||
|
header {
|
||
|
background-color: #f8f9fa;
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
border-bottom: 1px solid #dee2e6;
|
||
|
}
|
||
|
|
||
|
header h1 {
|
||
|
font-size: 2rem;
|
||
|
color: #343a40;
|
||
|
}
|
||
|
|
||
|
/* Navigation Styling */
|
||
|
nav {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
nav ul {
|
||
|
list-style-type: none;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
nav ul li {
|
||
|
margin: 0 15px;
|
||
|
}
|
||
|
|
||
|
nav ul li a {
|
||
|
text-decoration: none;
|
||
|
|
||
|
color: #007bff;
|
||
|
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
nav ul li a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
/* Main Content Styling */
|
||
|
main {
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
article {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
article h2 {
|
||
|
font-size: 1.5rem;
|
||
|
color: #495057;
|
||
|
}
|
||
|
|
||
|
article p {
|
||
|
line-height: 1.6;
|
||
|
color: #212529;
|
||
|
}
|
||
|
|
||
|
/* Footer Styling */
|
||
|
footer {
|
||
|
background-color: #f8f9fa;
|
||
|
padding: 10px;
|
||
|
text-align: center;
|
||
|
border-top: 1px solid #dee2e6;
|
||
|
}
|
||
|
|
||
|
footer p {
|
||
|
font-size: 0.875rem;
|
||
|
color: #6c757d;
|
||
|
}
|