rss-reader/static/css/components/layout.css

35 lines
560 B
CSS
Raw Normal View History

2025-02-05 03:26:05 -08:00
/* 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;
}
2025-02-05 04:19:47 -08:00
.main-content-area {
2025-02-05 03:26:05 -08:00
flex: 1;
2025-02-05 04:19:47 -08:00
min-width: 0; /* Prevents flex item from overflowing */
2025-02-05 03:26:05 -08:00
}
2025-02-05 04:19:47 -08:00
#main-content {
flex: 1;
padding: 1rem;
}
#main-content h1 {
2025-02-05 03:26:05 -08:00
color: var(--primary-red);
font-size: 2.5em;
margin-bottom: 0.5em;
}
2025-02-05 04:19:47 -08:00
#main-content p {
2025-02-05 03:26:05 -08:00
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 1.5em;
}