Add event types

This commit is contained in:
2024-03-31 12:25:49 +02:00
parent 0e99f5f8c8
commit e76d57f07d
7 changed files with 193 additions and 151 deletions

View File

@@ -7,11 +7,11 @@
border-bottom: 5px var(--hightlight) solid;
}
.event:hover>div {
.event:hover > div {
padding-bottom: calc(0.5rem - 5px);
}
.event>div {
.event > div {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
white-space: nowrap;
@@ -35,6 +35,12 @@
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;
@@ -50,8 +56,8 @@
.event:hover {
border-bottom: none;
}
.event:hover> div {
.event:hover > div {
padding-bottom: 0;
}
@@ -62,4 +68,8 @@
.title {
border-left: none;
}
.types {
margin-left: 0;
}
}