34 lines
535 B
CSS
34 lines
535 B
CSS
/* Basic layout styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: var(--dark-bg);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
body.with-sidebar {
|
|
display: flex;
|
|
}
|
|
|
|
.main-content {
|
|
flex: 1;
|
|
padding: 20px 40px;
|
|
}
|
|
|
|
.main-content h1 {
|
|
color: var(--primary-red);
|
|
font-size: 2.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.main-content p {
|
|
line-height: 1.6;
|
|
color: var(--text-muted);
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
/* Layout adjustments */
|
|
.with-sidebar {
|
|
padding-top: 3rem;
|
|
} |