aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Track.scss
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-06-19 14:35:51 -0400
committerandrewdkim <adkim414@gmail.com>2019-06-19 14:35:51 -0400
commitda2157616ca4e614dacbf26fb5fa6758b51a209e (patch)
tree1186e684697bbaca190ec7b536f79668772fc90c /src/client/views/nodes/Track.scss
parent454dfcbcc7cf9ac8b859c3457c6e75efb1a2b12f (diff)
addable track
Diffstat (limited to 'src/client/views/nodes/Track.scss')
-rw-r--r--src/client/views/nodes/Track.scss58
1 files changed, 21 insertions, 37 deletions
diff --git a/src/client/views/nodes/Track.scss b/src/client/views/nodes/Track.scss
index 9c6ab08f0..e922aa1df 100644
--- a/src/client/views/nodes/Track.scss
+++ b/src/client/views/nodes/Track.scss
@@ -1,42 +1,26 @@
-.track-container {
- height: 100px;
- width: 500px;
- background-color: rgb(160, 226, 243);
- position: absolute;
- left: 15%;
- top: 1%;
- font-size: 75%;
+@import "./../globalCssVariables.scss";
- .track {
- height: 60px;
- width: 500px;
- bottom: 0px;
- background-color: grey;
- position: absolute;
- }
-
- .inner {
- height: 44px;
- width: 484px;
- background-color: black;
- //opacity: 0.5;
- position: absolute;
- margin: 8px;
- z-index: 10;
+.track-container{
+
+ .datapane{
+ top:0px;
+ width: 100px;
+ height: 100px;
+ background-color: $light-color-secondary;
+ position:relative;
+ float:left;
+ border-style:solid;
}
- button {
- height: 30px;
- width: 50px;
- font-size: 1em;
- position: relative;
- margin: 5px;
- }
-
- input {
- height: 30px;
- width: 100px;
- font-size: 1em;
- margin: 5px;
+ .track {
+ .inner {
+ top:0px;
+ float:right;
+ height: 100px;
+ width: calc(100% - 100px);
+ background-color: $light-color;
+ border-style:solid;
+ position:relative;
+ }
}
} \ No newline at end of file