diff options
author | andrewdkim <adkim414@gmail.com> | 2019-06-24 16:32:56 -0400 |
---|---|---|
committer | andrewdkim <adkim414@gmail.com> | 2019-06-24 16:32:56 -0400 |
commit | 33440b84d276b3488f10f14c4b51893d1d54353d (patch) | |
tree | f8462565bb4e87a3d28a3ef5e41983a435ec56c3 /src/client/views/nodes/Keyframe.scss | |
parent | df5c4abc3acbf67db44384ef000c893c61270fcc (diff) |
graphical change
Diffstat (limited to 'src/client/views/nodes/Keyframe.scss')
-rw-r--r-- | src/client/views/nodes/Keyframe.scss | 70 |
1 files changed, 54 insertions, 16 deletions
diff --git a/src/client/views/nodes/Keyframe.scss b/src/client/views/nodes/Keyframe.scss index afc16e3c0..b3a950afa 100644 --- a/src/client/views/nodes/Keyframe.scss +++ b/src/client/views/nodes/Keyframe.scss @@ -3,13 +3,13 @@ .bar { height: 100%; width: 5px; - background-color: green; - position: relative; + background-color: #4d9900; + position: absolute; // pointer-events: none; .menubox { width: 200px; - height: 200px; + height:200px; top: 50%; position: relative; background-color: $light-color; @@ -21,25 +21,63 @@ } .leftResize{ - left:-10px; - height:20px; - width:20px; + left:-12.5px; + height:25px; + width:25px; border-radius: 50%; - border: 1px black; - background-color: transparent; - top: calc(50% - 10px); + background-color: white; + border:3px solid black; + top: calc(50% - 12.5px); + z-index: 1000; position:absolute; } .rightResize{ - right:-10px; - height:20px; - width:20px; + right:-12.5px; + height:25px; + width:25px; border-radius: 50%; - top:calc(50% - 10px); - background-color:black; + top:calc(50% - 12.5px); + background-color:white; + border:3px solid black; + z-index: 1000; position:absolute; - + } + .fadeLeft{ + left:0px; + height:100%; + position:absolute; + pointer-events: none; + background: linear-gradient(to left, #4d9900 10%, $light-color); } + .fadeRight{ + right:0px; + height:100%; + position:absolute; + pointer-events: none; + background: linear-gradient(to right, #4d9900 10%, $light-color); + } + .divider{ + height:100%; + width: 1px; + position: absolute; + background-color:black; + cursor: col-resize; + } + .keyframe{ + height:100%; + position:absolute; + } + .keyframeCircle{ + left:-15px; + height:30px; + width:30px; + border-radius: 50%; + top:calc(50% - 15px); + background-color:white; + border:3px solid green; + z-index: 1000; + position:absolute; + } -}
\ No newline at end of file +} |