add of Event module

This commit is contained in:
2025-11-09 19:55:35 +01:00
parent d11873d9f1
commit b3a709a09c
4 changed files with 138 additions and 1 deletions
+87
View File
@@ -0,0 +1,87 @@
.eventContainer {
display: flex;
width: 80%;
margin: 1rem 0;
justify-content: space-between;
}
.eventImageDiv {
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
width: auto;
height: 6rem;
flex-shrink: 0;
}
.eventImage {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.eventContent {
display: flex;
}
.eventTitle {
font-size: 2rem;
}
.eventButtons {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
}
.eventButtons a {
justify-content: flex-end;
}
.moreButton {
background: none;
border: none;
color: #019AFF;
font-size: 1.5rem;
transition: all 0.2s ease;
cursor: pointer;
border-radius: 50%;
width: 55px;
height: 55px;
}
.moreButton:hover {
font-size: 2rem;
background: rgba(191, 191, 191, 0.5);
}
.moreButton:focus {
outline: none;
}
.moreButton:focus-visible {
outline: 2px solid black;
}
.moreButtonClicked {
rotate: 90deg;
}
.eventMenuOpen {
display: flex;
}
.eventMenuClose {
display: none;
}