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 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
svg {
|
||||
width: 500px;
|
||||
height: 500px;
|
||||
background-color: white;
|
||||
}
|
||||
#svg-container {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
#previous {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
canvas {
|
||||
width: 500px;
|
||||
height: 500px;
|
||||
border: 1px solid currentColor;
|
||||
#previous svg {
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#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