aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Keyframe.scss
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-08-01 17:00:10 -0400
committerandrewdkim <adkim414@gmail.com>2019-08-01 17:00:10 -0400
commitbf3d45f8a16d23384a308f65adfa9a2baee495af (patch)
tree15e8d74c57436a5987133bf5732764a8155bb282 /src/client/views/nodes/Keyframe.scss
parent59f3d2405870135314d00ea80acae0dc17b99955 (diff)
prosemirror
Diffstat (limited to 'src/client/views/nodes/Keyframe.scss')
-rw-r--r--src/client/views/nodes/Keyframe.scss94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/client/views/nodes/Keyframe.scss b/src/client/views/nodes/Keyframe.scss
deleted file mode 100644
index b1e8b0b65..000000000
--- a/src/client/views/nodes/Keyframe.scss
+++ /dev/null
@@ -1,94 +0,0 @@
-@import "./../globalCssVariables.scss";
-
-.bar {
- height: 100%;
- width: 5px;
- position: absolute;
-
- // pointer-events: none;
- .menubox {
- width: 200px;
- height:200px;
- top: 50%;
- position: relative;
- background-color: $light-color;
- .menutable{
- tr:nth-child(odd){
- background-color:$light-color-secondary;
- }
- }
- }
-
- .leftResize{
- left:-12.5px;
- height:25px;
- width:25px;
- border-radius: 50%;
- background-color: white;
- border:3px solid black;
- top: calc(50% - 12.5px);
- z-index: 1000;
- position:absolute;
- }
- .rightResize{
- right:-12.5px;
- height:25px;
- width:25px;
- border-radius: 50%;
- 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;
- pointer-events:none;
- }
- .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;
- }
-
- .fadeIn-container, .fadeOut-container, .body-container{
- position:absolute;
- height:100%;
- background-color: rgba(0, 0, 0, 0.5);
- opacity: 0;
- }
-
-
-}
-
-
-