aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/TimelineOverview.scss
diff options
context:
space:
mode:
authorusodhi <61431818+usodhi@users.noreply.github.com>2020-05-04 12:22:04 +0530
committerusodhi <61431818+usodhi@users.noreply.github.com>2020-05-04 12:22:04 +0530
commit95ec58135f3534640afc0a38d8c4bbbb84bc3434 (patch)
tree2b04fb11d2f821155668c4ebcec3a86229a01acb /src/client/views/animationtimeline/TimelineOverview.scss
parenta2eb8ba283ce4a8fb7f423a9198e2a5778eba886 (diff)
parent1027f0b2e40df0ca13dfa2db97f278e804dadb68 (diff)
finishing merge
Diffstat (limited to 'src/client/views/animationtimeline/TimelineOverview.scss')
-rw-r--r--src/client/views/animationtimeline/TimelineOverview.scss107
1 files changed, 107 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..283163ea7
--- /dev/null
+++ b/src/client/views/animationtimeline/TimelineOverview.scss
@@ -0,0 +1,107 @@
+@import "./../globalCssVariables.scss";
+
+$timelineColor: #9acedf;
+$timelineDark: #77a1aa;
+
+.timelineOverview-bounding {
+ width: 100%;
+ margin-right: 10px;
+}
+
+.timeline-flex {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+}
+
+.timeline-overview-container {
+ // padding: 0px;
+ margin-right: 5px;
+ // margin: 0px;
+ margin-left: 5px;
+ // width: 300px;
+ width: 100%;
+ height: 25px;
+ background: white;
+ position: relative;
+ border: 2px solid $timelineDark;
+ // width: 100%;
+
+ .timeline-overview-visible {
+ position: absolute;
+ height: 21px;
+ background: $timelineColor;
+ display: inline-block;
+ margin: 0px;
+ padding: 0px;
+ // top: 1px;
+ }
+
+ .timeline-overview-scrubber-container {
+ margin: 0px;
+ padding: 0px;
+ position: absolute;
+ height: 100%;
+ width: 2px;
+ top: 0px;
+ left: 0px;
+ z-index: 1001;
+ background-color: black;
+ display: inline-block;
+
+ .timeline-overview-scrubber-head {
+ padding: 0px;
+ margin: 0px;
+ position: absolute;
+ height: 10px;
+ width: 10px;
+ background-color: white;
+ border-radius: 50%;
+ border: 2px solid black;
+ left: -4px;
+ // top: -30px;
+ top: -10px;
+ }
+ }
+}
+
+
+
+.timeline-play-bar {
+ position: relative;
+ padding: 0px;
+ margin: 0px;
+ width: 100%;
+ height: 4px;
+ background-color: $timelineColor;
+ border-radius: 20px;
+ cursor: pointer;
+
+ .timeline-play-head {
+ position: absolute;
+ padding: 0px;
+ margin: 0px;
+ width: 20px;
+ height: 20px;
+ border-radius: 50%;
+ background-color: white;
+ border: 3px solid $timelineColor;
+ left: 0px;
+ top: -8px;
+ cursor: pointer;
+ }
+}
+
+.timeline-play-tail {
+ position: absolute;
+ padding: 0px;
+ margin: 0px;
+ height: 4px;
+ width: 0px;
+ z-index: 1000;
+ background-color: $timelineDark;
+ border-radius: 20px;
+ margin-top: -4px;
+ cursor: pointer;
+} \ No newline at end of file