2023-01-29 17:51:29 +00:00
|
|
|
div.eventList {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
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 17:51:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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%;
|
|
|
|
width: 200px;
|
2023-01-29 17:51:29 +00:00
|
|
|
height: 200px;
|
2023-01-29 19:05:52 +00:00
|
|
|
border-radius: 5px;
|
2023-01-29 17:51:29 +00:00
|
|
|
transform: scale(1);
|
|
|
|
transition: transform .5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.eventList a.event div.event:hover {
|
|
|
|
transform: scale(.95);
|
|
|
|
transition: transform .5s;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.eventList a.event div.event p.date {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 10px;
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|