interstellar_ai/app/styles/doc.css

45 lines
1 KiB
CSS
Raw Normal View History

2024-09-19 12:18:04 +02:00
/* styles.css */
/* Styling for the documentation container */
.documentation-container {
padding: 2rem;
}
.documentation-section {
max-width: 900px;
2024-09-30 16:11:01 +02:00
height: 80dvh;
margin: auto;
2024-09-23 11:55:58 +02:00
background: var(--doc-background-color); /* Use variable for background */
2024-09-19 12:18:04 +02:00
padding: 2rem;
border-radius: 8px;
2024-09-23 08:05:29 +02:00
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
2024-09-19 12:18:04 +02:00
overflow-y: scroll;
}
.title {
2024-09-30 16:11:01 +02:00
font-size: calc(var(--font-size)*2);
2024-09-23 11:55:58 +02:00
color: var(--doc-title-color); /* Use variable for title color */
2024-09-19 12:18:04 +02:00
margin-bottom: 1.5rem;
}
.subtitle {
2024-09-30 16:11:01 +02:00
font-size: calc(var(--font-size)*1.5);
2024-09-23 11:55:58 +02:00
color: var(--doc-subtitle-color); /* Use variable for subtitle color */
2024-09-19 12:18:04 +02:00
margin-top: 2rem;
margin-bottom: 1rem;
}
.subsection-title {
2024-09-30 16:11:01 +02:00
font-size: calc(var(--font-size)*1.25);
2024-09-23 11:55:58 +02:00
color: var(--doc-subsection-title-color); /* Use variable for subsection title color */
2024-09-19 12:18:04 +02:00
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.paragraph {
2024-09-30 16:11:01 +02:00
font-size: calc(var(--font-size));
2024-09-23 11:55:58 +02:00
color: var(--doc-paragraph-color); /* Use variable for paragraph color */
2024-09-19 12:18:04 +02:00
margin-bottom: 1.5rem;
line-height: 1.6;
}