0a345a0f22
- Reduce plot-container margin-bottom from 450px to 2rem in view-controls.css - Reduce body padding-bottom from 400px to 2rem in base.css - Fix unnecessary spacing since stats box uses fixed positioning - Enhance logger with professional tree-structured output and colors - Replace print statements with structured logging throughout codebase
72 lines
1.3 KiB
CSS
72 lines
1.3 KiB
CSS
/* ========================================
|
|
BASE LAYOUT AND TYPOGRAPHY
|
|
======================================== */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
margin: 0;
|
|
padding: 1rem;
|
|
padding-bottom: 2rem; /* Reduced from 400px - stats box is fixed positioned */
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
transition: background-color 0.3s, color 0.3s;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h2 {
|
|
color: var(--text-color);
|
|
font-size: 1.3rem;
|
|
margin: 1.5rem 0 0.5rem 0;
|
|
}
|
|
|
|
/* ========================================
|
|
SUBDIRECTORIES LIST
|
|
======================================== */
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
ul li {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
ul li a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
padding: 0.3rem 0;
|
|
display: inline-block;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
ul li a:hover {
|
|
color: var(--link-hover);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Responsive design adjustments */
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 0.5rem;
|
|
padding-bottom: 300px; /* Further increased mobile bottom padding to match desktop */
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2rem;
|
|
margin: 1rem 0 0.5rem 0;
|
|
}
|
|
}
|