css verändert

This commit is contained in:
xoy 2023-01-29 20:41:01 +01:00
parent f8c3e34106
commit c5a02cc721
2 changed files with 11 additions and 7 deletions

View File

@ -13,13 +13,14 @@ div.eventList a.event {
}
div.eventList a.event:hover {
text-decoration: underline;
text-decoration: none !important;
}
div.eventList a.event div.event {
max-width: 100%;
width: 420px;
height: 200px;
min-height: 200px;
height: auto;
transform: scale(1);
transition: transform .5s;
padding: 10px 10px 10px 10px;
@ -33,13 +34,9 @@ div.eventList a.event:hover div.event {
transition: transform .5s;
}
div.eventList a.event:hover div.event p.date {
text-decoration: none !important;
}
div.eventList a.event div.event p.date {
text-align: right;
padding: 0 10px 0 0;
margin: 0;
word-wrap: normal;
word-wrap: break-word;
}

View File

@ -5,4 +5,11 @@ main img {
main div.rundgang {
height: 140px;
}
@media only screen and (max-width: 885px) {
main img {
height: 400px;
object-fit: cover;
}
}