hugo-theme-zzo/assets/sass/pages/_talk.scss

61 lines
1.3 KiB
SCSS
Raw Normal View History

2019-12-31 02:26:57 +00:00
.talk {
&__date {
border-radius: 0.25rem;
min-width: 100px;
max-width: 100px;
margin-right: 1rem;
2019-12-31 02:26:57 +00:00
font-size: 16px;
height: 26px;
line-height: 26px;
text-align: center;
position: relative;
2019-12-31 02:26:57 +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-right: 0.5rem;
margin-left: 0.75rem;
width: 100%;
&[data-title-wrap^="no"] {
@include truncate($grid-max-width);
2019-12-31 02:26:57 +00:00
}
@media only screen and (max-width: 600px) {
margin-top: 1rem;
margin-bottom: 0.5rem;
}
@include on-event {
&::before {
content: '';
position: absolute;
left: 3rem;
width: 0.25rem;
height: 30px;
@include themify($themes) {
background-color: themed('archive-hover-line-color');
@media only screen and (max-width:768px) {
top: 13px;
left: 0;
height: 24px;
}
}
@media only screen and (max-width: 769px) {
height: 24px;
top: 50%;
@include translateY(-50%);
}
}
}
2019-12-31 02:26:57 +00:00
}
}