mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
36 lines
705 B
SCSS
36 lines
705 B
SCSS
.roadmap-container {
|
|
margin: 1.25rem auto 0;
|
|
max-width: 800px;
|
|
position: relative;
|
|
|
|
&::after {
|
|
width: 1px; height: 100%;
|
|
top: 0; left: 2.5rem; // 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: 6rem;
|
|
padding: 1.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.roadmap-item-date {
|
|
width: 5rem; height: 5rem;
|
|
top: -1px; left: -6rem;
|
|
|
|
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;
|
|
}
|