2019-12-31 02:26:57 +00:00
|
|
|
.talk {
|
|
|
|
&__date {
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
min-width: 100px;
|
|
|
|
max-width: 100px;
|
2020-01-10 03:16:08 +00:00
|
|
|
margin-right: 1rem;
|
2019-12-31 02:26:57 +00:00
|
|
|
font-size: 16px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
text-align: center;
|
2020-01-10 03:16:08 +00:00
|
|
|
position: relative;
|
2019-12-31 02:26:57 +00:00
|
|
|
|
2020-01-10 03:16:08 +00:00
|
|
|
@include truncate(100px);
|
|
|
|
@include animation('slide-in-left .2s .5s 1 ease both');
|
2019-12-31 02:26:57 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('archive-meta-color');
|
|
|
|
background-color: themed('archive-type-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
&--margin {
|
2020-01-10 03:16:08 +00:00
|
|
|
margin-right: 0.5rem;
|
2019-12-31 02:26:57 +00:00
|
|
|
margin-left: 0.75rem;
|
|
|
|
}
|
2020-01-01 16:35:53 +00:00
|
|
|
|
2020-01-10 03:16:08 +00:00
|
|
|
@include truncate2($grid-max-width);
|
2020-01-01 16:35:53 +00:00
|
|
|
@include on-event {
|
2020-01-10 03:16:08 +00:00
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 100px;
|
|
|
|
width: 0.2rem;
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
background-color: themed('archive-hover-line-color');
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 769px) {
|
|
|
|
top: 50%;
|
|
|
|
@include translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 16:35:53 +00:00
|
|
|
@media only screen and (min-width: 769px) {
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 3rem;
|
|
|
|
width: 0.25rem;
|
2020-01-06 23:10:13 +00:00
|
|
|
height: 30px;
|
2020-01-01 16:35:53 +00:00
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
background-color: themed('archive-hover-line-color');
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 769px) {
|
|
|
|
top: 50%;
|
|
|
|
@include translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-31 02:26:57 +00:00
|
|
|
}
|
|
|
|
}
|