aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Keyframe.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/nodes/Keyframe.scss')
-rw-r--r--src/client/views/nodes/Keyframe.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/client/views/nodes/Keyframe.scss b/src/client/views/nodes/Keyframe.scss
new file mode 100644
index 000000000..930384c7f
--- /dev/null
+++ b/src/client/views/nodes/Keyframe.scss
@@ -0,0 +1,42 @@
+@import "./../globalCssVariables.scss";
+
+.bar {
+ height: 100%;
+ width: 5px;
+ background-color: green;
+ position: absolute;
+
+ // pointer-events: none;
+ .menubox {
+ width: 200px;
+ height: 200px;
+ top: 50%;
+ position: absolute;
+ background-color: $light-color;
+ .menutable{
+ tr:nth-child(odd){
+ background-color:$light-color-secondary;
+ }
+ }
+ }
+
+ .leftResize{
+ left:-10px;
+ height:20px;
+ width:20px;
+ background-color: black;
+ top: calc(50% - 10px);
+ position:absolute;
+ }
+ .rightResize{
+ right:-10px;
+ height:20px;
+ width:20px;
+ top:calc(50% - 10px);
+ background-color:black;
+ position:absolute;
+
+ }
+
+
+} \ No newline at end of file