Adding greater text in carousel

This commit is contained in:
Sergiotarxz 2023-09-07 02:03:57 +02:00
parent e3b6132a5d
commit 455afc62f5
2 changed files with 22 additions and 2 deletions

View File

@ -256,7 +256,6 @@ body {
background: white;
max-height: 100%;
max-width: 100%;
min-width: 277px;
border: solid 1px black; }
body div.page-contents div.description div.articles a {
min-height: 90%;
@ -360,6 +359,10 @@ body {
font-size: 20px; } }
@media (min-width: 694px) {
body div.carousel a {
font-size: 20px; }
body div.carousel h3 {
font-size: 25px; }
body div.page-contents div.description div.articles a {
width: 45%;
margin-left: 5%; }
@ -401,3 +404,7 @@ body {
margin-left: 3%; }
body div.page-contents div.description div.articles a:nth-child(3n+1) {
margin-left: 0%; } }
@media (max-width: 200px) {
body {
font-size: 20px; } }

View File

@ -374,7 +374,6 @@ body {
background: white;
max-height: 100%;
max-width: 100%;
min-width: 277px;
border: solid 1px black;
}
}
@ -549,6 +548,14 @@ body {
@media (min-width: 694px) {
body {
div.carousel {
a {
font-size: 20px;
}
h3 {
font-size: 25px;
}
}
div.page-contents {
div.description {
div.articles {
@ -633,3 +640,9 @@ body {
}
}
}
@media (max-width: 200px) {
body {
font-size: 20px;
}
}