2024-09-19 12:18:04 +02:00
|
|
|
/* styles.css */
|
|
|
|
/* Styling for the documentation container */
|
2024-10-08 17:37:17 +02:00
|
|
|
.documentation-container{
|
2024-09-19 12:18:04 +02:00
|
|
|
padding: 2rem;
|
|
|
|
}
|
2024-10-08 17:37:17 +02:00
|
|
|
.documentation-section{
|
2024-09-19 12:18:04 +02:00
|
|
|
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;
|
|
|
|
}
|
2024-10-08 17:37:17 +02:00
|
|
|
.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;
|
|
|
|
}
|
2024-10-08 17:37:17 +02:00
|
|
|
.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;
|
|
|
|
}
|
2024-10-08 17:37:17 +02:00
|
|
|
.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;
|
|
|
|
}
|
2024-10-08 17:37:17 +02:00
|
|
|
.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;
|
|
|
|
}
|