mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
38 lines
707 B
SCSS
38 lines
707 B
SCSS
.roadmap-container {
|
|
margin: 1.25rem auto 0;
|
|
max-width: 840px;
|
|
position: relative;
|
|
|
|
&::after {
|
|
width: 1px; height: 100%;
|
|
top: 0; left: 3rem; // half of date width
|
|
|
|
background-color: var(--lbry-gray-1);
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
}
|
|
|
|
.roadmap-item {
|
|
border: 1px solid var(--lbry-gray-1);
|
|
margin-bottom: 2rem;
|
|
margin-left: 8rem;
|
|
padding: 1.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.roadmap-item-date {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
top: -1px;
|
|
left: -8rem;
|
|
|
|
background-color: var(--lbry-white);
|
|
border-radius: 50%;
|
|
border: 1px solid var(--lbry-gray-1);
|
|
position: absolute;
|
|
text-align: center;
|
|
white-space: pre-line;
|
|
word-spacing: 5rem;
|
|
}
|