46 lines
687 B
CSS
46 lines
687 B
CSS
/* 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;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
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;
|
|
}
|
|
|
|
|