diff options
Diffstat (limited to 'src/client/views/animationtimeline/TimelineOverview.scss')
-rw-r--r-- | src/client/views/animationtimeline/TimelineOverview.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/client/views/animationtimeline/TimelineOverview.scss b/src/client/views/animationtimeline/TimelineOverview.scss new file mode 100644 index 000000000..9e69c2adf --- /dev/null +++ b/src/client/views/animationtimeline/TimelineOverview.scss @@ -0,0 +1,38 @@ +@import "./../globalCssVariables.scss"; + +.timeline-overview-container{ + width: 300px; + height: 40px; + margin-top: 10px; + margin-left: 20px; + background: white; + border: 2px solid black; + padding: 0px; + display:inline-block; + .timeline-overview-visible{ + height: 100%; + background: green; + margin: 0px; + } + .timeline-overview-scrubber-container{ + height: 100%; + margin-top: -40px; + margin-left: 0px; + width: 2px; + z-index: 1001; + background-color:black; + display: inline-block; + .timeline-overview-scrubber-head{ + position:absolute; + height: 30px; + width: 30px; + background-color:transparent; + border-radius: 50%; + border: 5px solid black; + margin-left: -15px; + top: -15px; + + } + + } +}
\ No newline at end of file |