krata/_sass/layout/archives.scss

145 lines
2.4 KiB
SCSS
Raw Normal View History

2021-01-23 06:20:58 +01:00
/*
Style for Archives
*/
2019-11-15 17:01:33 +01:00
2020-02-25 10:56:03 +01:00
#archives {
letter-spacing: 0.03rem;
2019-11-15 17:01:33 +01:00
$timeline-width: 4px;
%timeline {
content: '';
width: $timeline-width;
2020-02-25 10:56:03 +01:00
position: relative;
float: left;
background-color: var(--timeline-color);
}
.year {
height: 3.5rem;
font-size: 1.5rem;
position: relative;
left: 2px;
margin-left: -$timeline-width;
&::before {
@extend %timeline;
height: 72px;
left: 79px;
bottom: 16px;
}
&:first-child::before {
@extend %timeline;
height: 32px;
top: 24px;
}
2020-02-25 10:56:03 +01:00
/* Year dot */
&::after {
content: '';
display: inline-block;
2020-02-25 10:56:03 +01:00
position: relative;
border-radius: 50%;
width: 12px;
height: 12px;
left: 21.5px;
2020-02-25 10:56:03 +01:00
border: 3px solid;
background-color: var(--timeline-year-dot-color);
border-color: var(--timeline-node-bg);
box-shadow: 0 0 2px 0 #c2c6cc;
2020-02-25 10:56:03 +01:00
z-index: 1;
}
}
2020-02-25 10:56:03 +01:00
ul {
li {
font-size: 1.1rem;
line-height: 3rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:nth-child(odd) {
2022-10-19 20:05:29 +02:00
background-color: var(--main-bg, #ffffff);
background-image: linear-gradient(
to left,
#ffffff,
#fbfbfb,
#fbfbfb,
#fbfbfb,
#ffffff
);
}
&::before {
@extend %timeline;
top: 0;
left: 77px;
height: 3.1rem;
}
}
&:last-child li:last-child::before {
height: 1.5rem;
}
} /* #archives ul */
2020-02-25 10:56:03 +01:00
.date {
white-space: nowrap;
display: inline-block;
position: relative;
right: 0.5rem;
2021-10-25 21:04:15 +02:00
2020-02-25 10:56:03 +01:00
&.month {
width: 1.4rem;
text-align: center;
}
2021-10-25 21:04:15 +02:00
2020-02-25 10:56:03 +01:00
&.day {
font-size: 85%;
2022-10-19 20:05:29 +02:00
font-family: Lato, sans-serif;
}
}
a {
/* post title in Archvies */
margin-left: 2.5rem;
position: relative;
top: 0.1rem;
&:hover {
border-bottom: none;
}
&::before {
/* the dot before post title */
content: '';
display: inline-block;
2020-02-25 10:56:03 +01:00
position: relative;
border-radius: 50%;
width: 8px;
height: 8px;
float: left;
top: 1.35rem;
left: 71px;
background-color: var(--timeline-node-bg);
box-shadow: 0 0 3px 0 #c2c6cc;
z-index: 1;
2020-02-25 10:56:03 +01:00
}
}
2022-10-19 20:05:29 +02:00
} /* #archives */
2019-11-15 17:01:33 +01:00
@media all and (max-width: 576px) {
#archives {
margin-top: -1rem;
2021-10-25 21:04:15 +02:00
2020-02-25 10:56:03 +01:00
ul {
letter-spacing: 0;
}
2019-11-15 17:01:33 +01:00
}
}