feat: Remove border from slideshow holder and add responsive title image styling

This commit is contained in:
Roman Pyrih
2025-04-23 13:23:54 +02:00
parent 027c9133d0
commit e91169bba8
3 changed files with 33 additions and 3 deletions

View File

@@ -114,7 +114,6 @@ body {
#slideshowHolder {
margin: auto;
border: 1px solid #252525;
box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.6);
}
@@ -863,4 +862,20 @@ table.registration th {
.videos-box {
grid-template-columns: 1fr;
}
}
.hp-title-image {
display: flex;
flex-direction: row;
align-items: center;
}
@media (max-width: 992px) {
.hp-title-image img {
height: auto !important;
}
}
@media (max-width: 680px) {
.hp-title-image {
flex-direction: column;
}
}/*# sourceMappingURL=default.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -117,7 +117,7 @@ body {
#slideshowHolder {
margin: auto;
border: 1px solid #252525;
// border: 1px solid #252525;
-webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.6);
box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.6);
}
@@ -931,3 +931,18 @@ table.registration th {
grid-template-columns: 1fr;
}
}
.hp-title-image {
display: flex;
flex-direction: row;
align-items: center;
@media (max-width: 992px) {
img {
height: auto !important;
}
}
@media (max-width: 680px) {
flex-direction: column;
}
}