ctdo.de/web/styles/events.css

40 lines
891 B
CSS
Raw Normal View History

div.eventList {
display: flex;
2023-01-29 19:13:21 +00:00
justify-content: space-between;
width: 100%;
padding: 10px 0 10px 0;
}
div.eventList a.event {
display: inline-block;
2023-01-29 18:09:09 +00:00
color: white !important;
background-color: var(--nav-background-color) !important;
2023-01-29 19:13:21 +00:00
margin: 10px 10px 10px 10px;
2023-01-29 19:14:32 +00:00
border-radius: 5px;
}
div.eventList a.event:hover {
text-decoration: none;
}
div.eventList a.event div.event {
2023-01-29 19:05:52 +00:00
max-width: 100%;
2023-01-29 19:17:42 +00:00
width: 420px;
height: 200px;
transform: scale(1);
transition: transform .5s;
2023-01-29 19:13:21 +00:00
padding: 5px 5px 5px 5px;
box-shadow: inset 5px 5px 0px 0px var(--logo-background-color);
}
div.eventList a.event div.event:hover {
transform: scale(.95);
transition: transform .5s;
text-decoration: underline;
}
div.eventList a.event div.event p.date {
2023-01-29 19:17:42 +00:00
text-align: right;
padding-right: 10px;
text-decoration: none !important;
}