forked from kamo/exquisite-branch
branching svgs
parent
3719f26082
commit
e115e5d968
@ -0,0 +1,4 @@
|
|||||||
|
include exquisite_branch/schema.sql
|
||||||
|
graft exquisite_branch/static
|
||||||
|
graft exquisite_branch/templates
|
||||||
|
global-exclude *.pyc
|
@ -0,0 +1,24 @@
|
|||||||
|
.streams {
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
position: relative;
|
||||||
|
height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream {
|
||||||
|
white-space: nowrap;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.branches {
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.branch {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.branch svg {
|
||||||
|
border-top: 1px solid currentColor;
|
||||||
|
}
|
@ -1,14 +1,32 @@
|
|||||||
* {
|
svg {
|
||||||
box-sizing: border-box;
|
width: 500px;
|
||||||
|
height: 500px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
#svg-container {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
#previous {
|
||||||
body {
|
position: absolute;
|
||||||
margin: 0;
|
top: 0;
|
||||||
|
transform: translateX(-100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
canvas {
|
#previous svg {
|
||||||
width: 500px;
|
background: none;
|
||||||
height: 500px;
|
border: none;
|
||||||
border: 1px solid currentColor;
|
}
|
||||||
|
|
||||||
|
#previous::after {
|
||||||
|
content: "";
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
position: absolute;
|
||||||
|
transform: translateX(-25%);
|
||||||
|
background-color: var(--background);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
html,
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background-color: var(--background);
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
:root {
|
||||||
|
--background: #ddd;
|
||||||
|
}
|
Loading…
Reference in New Issue