interstellar_ai/app/styles/doc.css

47 lines
686 B
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;
height: 80vh;
margin: 0 auto;
background: #fff;
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 {
font-size: 2rem;
color: #333;
margin-bottom: 1.5rem;
}
.subtitle {
font-size: 1.5rem;
color: #555;
margin-top: 2rem;
margin-bottom: 1rem;
}
.subsection-title {
font-size: 1.25rem;
color: #666;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.paragraph {
font-size: 1rem;
color: #333;
margin-bottom: 1.5rem;
line-height: 1.6;
}