62 lines
927 B
SCSS
62 lines
927 B
SCSS
@import "_variables";
|
|
@import "_base";
|
|
|
|
.slide {
|
|
background-color: $color-bg;
|
|
}
|
|
|
|
.speaker-box {
|
|
// position: absolute;
|
|
position: relative;
|
|
top: 950px;
|
|
left: 50px;
|
|
|
|
width: auto;
|
|
max-width: 1000px;
|
|
}
|
|
|
|
.speaker {
|
|
background-color: $color-bg-medium;
|
|
|
|
border-width: 0 0 0 10px;
|
|
border-style: solid;
|
|
border-color: $color-orange-strong;
|
|
|
|
//---vertical-align: middle;
|
|
white-space: normal;
|
|
|
|
padding: 5px 20px;
|
|
padding-left: 25px;
|
|
|
|
font-family: 'Open Sans';
|
|
font-weight: 500;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.speaker .title {
|
|
}
|
|
|
|
.speaker .names {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
box-orient: vertical;
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: normal;
|
|
|
|
color: $color-speaker;
|
|
}
|
|
|
|
.type-0 {
|
|
display: none;
|
|
}
|
|
|
|
img {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|