lila/ui/lobby/css/_timeline.scss
2019-07-12 05:22:24 -04:00

34 lines
593 B
SCSS

.timeline {
@extend %page-text;
flex: 1 1 auto;
margin: 1em 0 0 $block-gap;
@include hoverflow;
.entry {
@extend %roboto;
a {
@extend %base-font, %page-font;
}
&:hover a {
color: $c-link;
}
&::after {
content: '';
display: block;
width: 100%;
height: 1px;
background: linear-gradient(to left, $c-border 20%, $c-bg-page);
margin: .7em 0;
}
}
.more {
font-size: .9em;
margin: .5em;
display: block;
text-align: right;
color: $c-font-dim;
&:hover {
color: $c-link;
}
}
}