123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- .posts-collapse {
- margin-left: $posts-collapse-margin;
- position: relative;
- +mobile() {
- margin-left: $posts-collapse-margin-mobile;
- margin-right: $posts-collapse-margin-mobile;
- }
- .collection-title {
- font-size: $font-size-large;
- position: relative;
- &::before {
- background: $grey-dark;
- border: 1px solid white;
- border-radius: 50%;
- content: ' ';
- height: 10px;
- left: 0;
- margin-left: -6px;
- margin-top: -4px;
- position: absolute;
- top: 50%;
- width: 10px;
- }
- }
- .collection-year {
- font-size: $font-size-largest;
- font-weight: bold;
- margin: 60px 0;
- position: relative;
- &::before {
- background: $grey;
- border-radius: 50%;
- content: ' ';
- height: 8px;
- left: 0;
- margin-left: -4px;
- margin-top: -4px;
- position: absolute;
- top: 50%;
- width: 8px;
- }
- }
- .collection-header {
- display: block;
- margin: 0 0 0 20px;
- small {
- color: $grey;
- margin-left: 5px;
- }
- }
- .post-header {
- border-bottom: 1px dashed $grey-light;
- margin: 30px 0;
- padding-left: 15px;
- position: relative;
- transition-property: border;
- the-transition();
- &::before {
- background: $grey;
- border: 1px solid white;
- border-radius: 50%;
- content: ' ';
- height: 6px;
- left: 0;
- margin-left: -4px;
- position: absolute;
- top: $font-size-smallest;
- transition-property: background;
- width: 6px;
- the-transition();
- }
- &:hover {
- border-bottom-color: $grey-dim;
- &::before {
- background: $black-deep;
- }
- }
- }
- .post-meta {
- display: inline;
- font-size: $font-size-smallest;
- margin-right: 10px;
- }
- .post-title {
- display: inline;
- a, span.exturl {
- border-bottom: none;
- color: var(--link-color);
- }
- .fa-external-link-alt {
- font-size: $font-size-small;
- margin-left: 5px;
- }
- }
- &::before {
- background: $whitesmoke;
- content: ' ';
- height: 100%;
- left: 0;
- margin-left: -2px;
- position: absolute;
- top: 1.25em;
- width: 4px;
- }
- }
|