Files
website/site/styles/events.css
2026-05-02 02:43:04 +02:00

79 lines
1.1 KiB
CSS

.description {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 40px;
}
.event {
display: flex;
flex-direction: row;
&:hover {
border-bottom: 5px var(--hightlight) solid;
& > div {
padding-bottom: calc(0.5rem - 5px);
}
}
& > div {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
white-space: nowrap;
}
}
.date {
width: 250px;
font-size: 0.9em;
overflow-x: hidden;
white-space: nowrap;
}
.title {
border-left: 2px solid var(--border);
font-weight: bold;
padding-left: 1rem;
padding-right: 0.5em;
}
.place {
font-size: 0.9em;
}
.types {
font-size: 0.9em;
margin-left: auto;
font-style: italic;
}
@media screen and (max-width: 1160px) {
.event {
flex-direction: column;
margin-bottom: 1rem;
border-left: 3px solid var(--border);
&:hover {
border-bottom: none;
border-left: 3px solid var(--hightlight);
& > div {
padding-bottom: 0;
}
}
& > div {
padding: 0 0.5rem;
white-space: normal;
}
}
.date {
width: 100%;
}
.title {
border-left: none;
}
.types {
margin-left: 0;
}
}