zeus.ugent.be/content/assets/stylesheets/includes/events.scss

82 lines
1.2 KiB
SCSS
Raw Normal View History

2016-08-26 22:36:10 +00:00
.box.event-preview {
border-radius: 0px;
display: flex;
box-shadow : none;
2016-09-14 14:11:48 +00:00
margin: 0px;
padding:20px;
padding-top:0px;
2016-08-26 22:36:10 +00:00
.image {
2016-09-13 17:56:55 +00:00
vertical-align: baseline;
2016-08-26 22:36:10 +00:00
border: 1px solid gray;
}
.info {
2016-09-14 14:11:48 +00:00
padding:20px;
padding-top:0px;
2016-08-26 22:36:10 +00:00
box-shadow : none;
2016-08-27 02:26:18 +00:00
width: 60%;
//for better spacing on mobile
2017-04-24 19:11:18 +00:00
@include mobile {
width: 100%;
}
2016-08-26 22:36:10 +00:00
.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;
}
.time {
font-size: 1.6em;
font-weight: 400;
}
2016-08-27 02:26:18 +00:00
}
.main-event {
border-left: 1px solid gray;
border-radius: 0px;
box-shadow: none;
height: 8em;
2016-08-26 22:36:10 +00:00
2016-08-27 02:26:18 +00:00
ul {
padding-left: .7em;
}
.active {
color: #FF7F00;
2016-08-26 22:36:10 +00:00
}
}
2016-08-26 21:21:58 +00:00
}
2017-10-21 09:49:28 +00:00
.sponsors {
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
> a {
width: 300px;
margin: 10px;
text-align: center;
}
}