65 lines
1.3 KiB
Plaintext
65 lines
1.3 KiB
Plaintext
.event {
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
|
|
font-size: @font-size-default;
|
|
|
|
.event-header {
|
|
background: @primary;
|
|
color: @on-primary;
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: @space-md;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.event-content {
|
|
padding: @space-sm;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
gap: @space-lg;
|
|
flex-wrap: wrap;
|
|
background-color: #fff;
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
|
|
strong {
|
|
color: @secondary;
|
|
font-weight: 600;
|
|
}
|
|
|
|
img {
|
|
width: 300px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.event-title {
|
|
color: @primary;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.event-subtitle {
|
|
font-size: 20px;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
flex-direction: column;
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.sidebar {
|
|
.event-content {
|
|
gap: @space-md;
|
|
}
|
|
}
|
|
}
|