css progress done

This commit is contained in:
YasinOnm08 2024-09-30 16:11:01 +02:00
parent 9bee0d7774
commit 4590593d73
12 changed files with 48 additions and 34 deletions

View file

@ -7,8 +7,8 @@
.documentation-section {
max-width: 900px;
height: 80vh;
margin: 0 auto;
height: 80dvh;
margin: auto;
background: var(--doc-background-color); /* Use variable for background */
padding: 2rem;
border-radius: 8px;
@ -17,27 +17,27 @@
}
.title {
font-size: 2rem;
font-size: calc(var(--font-size)*2);
color: var(--doc-title-color); /* Use variable for title color */
margin-bottom: 1.5rem;
}
.subtitle {
font-size: 1.5rem;
font-size: calc(var(--font-size)*1.5);
color: var(--doc-subtitle-color); /* Use variable for subtitle color */
margin-top: 2rem;
margin-bottom: 1rem;
}
.subsection-title {
font-size: 1.25rem;
font-size: calc(var(--font-size)*1.25);
color: var(--doc-subsection-title-color); /* Use variable for subsection title color */
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.paragraph {
font-size: 1rem;
font-size: calc(var(--font-size));
color: var(--doc-paragraph-color); /* Use variable for paragraph color */
margin-bottom: 1.5rem;
line-height: 1.6;