forked from kamo/exquisite-branch
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
623 B
CSS
50 lines
623 B
CSS
2 years ago
|
.streams {
|
||
|
overflow-x: auto;
|
||
|
overflow-y: hidden;
|
||
|
position: relative;
|
||
|
width: 500px;
|
||
|
height: 500px;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.stream {
|
||
|
white-space: nowrap;
|
||
|
position: absolute;
|
||
|
display: inline-block;
|
||
|
width: 500px;
|
||
|
height: 500px;
|
||
|
position: relative;
|
||
|
top: 5000px;
|
||
|
left: 0px;
|
||
|
}
|
||
|
|
||
|
.svg-container {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
display: inline-block;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.author {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
bottom: 50px;
|
||
|
font-size: 1rem;
|
||
|
background-color: white;
|
||
|
}
|
||
|
|
||
|
.branches {
|
||
|
overflow-x: auto;
|
||
|
overflow-y: hidden;
|
||
|
}
|
||
|
|
||
|
.branch {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.branch svg {
|
||
|
border-top: 1px solid currentColor;
|
||
|
}
|