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

@ -5,8 +5,8 @@
.credits-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;
@ -15,20 +15,20 @@
}
.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;
}
.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;