70 lines
1023 B
CSS
70 lines
1023 B
CSS
.glassCard {
|
|
width: 45%;
|
|
max-height: 79vh;
|
|
margin: 16px 0 16px 0;
|
|
padding: 10px 20px 10px 20px;
|
|
height: fit-content;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.glassCard::-webkit-scrollbar{
|
|
display: none;
|
|
}
|
|
|
|
.allContent{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
gap: 76px;
|
|
}
|
|
|
|
.eventList {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.eventDetails {
|
|
margin-top: 10px;
|
|
padding: 0;
|
|
}
|
|
|
|
.dateSelected{
|
|
font-size: 100px;
|
|
}
|
|
|
|
h2{
|
|
font-size: 30px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.eventGroup{
|
|
margin: 16px 0 16px 0;
|
|
padding: 10px 20px 10px 20px;
|
|
}
|
|
|
|
.eventGroup:hover{
|
|
cursor: pointer;
|
|
}
|
|
|
|
.eventTitle {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.glassCard {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
max-height: 450px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
} |