63 lines
999 B
SCSS
63 lines
999 B
SCSS
.box.event-preview {
|
|
border-radius: 0px;
|
|
display: flex;
|
|
align-items: center;
|
|
box-shadow : none;
|
|
margin-bottom: 0px;
|
|
|
|
border-top: 1px solid lighten(gray, 15%);
|
|
|
|
.image-holder {
|
|
border-radius: 50%;
|
|
padding: 10px;
|
|
border: 1px solid lighten(gray, 30%);
|
|
width: 15%;
|
|
height: 15%;
|
|
}
|
|
|
|
.image {
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
border: 1px solid gray;
|
|
}
|
|
|
|
.info {
|
|
margin: 1.5em;
|
|
box-shadow : none;
|
|
|
|
.title {
|
|
font-size: 1.7em;
|
|
font-weight: 500;
|
|
margin-bottom: 0;
|
|
a {
|
|
color: darken(gray, 20%);
|
|
}
|
|
a:hover {
|
|
border-bottom: none;
|
|
color: #FF7F00;
|
|
}
|
|
}
|
|
|
|
.location {
|
|
font-size: .9em;
|
|
a {
|
|
color: lighten(gray, 10%);
|
|
}
|
|
}
|
|
|
|
.description {
|
|
font-size: 1.7em;
|
|
font-weight: 200;
|
|
color: #FF7F00;
|
|
}
|
|
|
|
.time {
|
|
font-size: 1.6em;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.subevent {
|
|
margin-left: 20px;
|
|
}
|
|
}
|
|
}
|