diff options
| author | andrewdkim <adkim414@gmail.com> | 2019-10-20 17:16:52 -0400 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2019-10-20 17:16:52 -0400 |
| commit | 8e45ed5a6705becf6708c3d9e9740ce8febe65d9 (patch) | |
| tree | 50bfda207cb93bf49c2189aa7b335cd86fcf6809 /src/client/views/animationtimeline/Timeline.scss | |
| parent | 9e914734438a52c5f9bb9a43421418c8ed5f903a (diff) | |
changed ui input, and more bug fixes
Diffstat (limited to 'src/client/views/animationtimeline/Timeline.scss')
| -rw-r--r-- | src/client/views/animationtimeline/Timeline.scss | 68 |
1 files changed, 40 insertions, 28 deletions
diff --git a/src/client/views/animationtimeline/Timeline.scss b/src/client/views/animationtimeline/Timeline.scss index cf6b4b3d5..f6a48d876 100644 --- a/src/client/views/animationtimeline/Timeline.scss +++ b/src/client/views/animationtimeline/Timeline.scss @@ -7,10 +7,48 @@ display:flex; align-items: flex-start; flex-direction: row; + justify-content: space-evenly; + align-items: baseline; top: 10px; div{ margin-left:10px; } + .animation-text{ + font-size: 20px; + height: auto; + width: auto; + } + .round-toggle { + height: 40px; + width: 80px; + background-color: white; + border: 2px solid purple; + border-radius: 20px; + animation-fill-mode: forwards; + animation-duration: 500ms; + top: 30px; + input{ + position:absolute; + opacity: 0; + height: 0; + width: 0; + } + .round-toggle-slider{ + height: 35px; + width: 35px; + background-color: white; + border:1px solid grey; + border-radius: 20px; + transition: transform 500ms ease-in-out; + margin-left: 0px; + margin-top: 0.5px; + } + } + .time-input{ + height: 40px; + width: 100px; + + } } .tick{ @@ -112,38 +150,12 @@ float: left 0px; top: 25%; height: 75%; - width: 100%; + width: 100%; background-color: grey; } } -.round-toggle { - height: 40px; - width: 80px; - background-color: white; - border: 2px solid purple; - border-radius: 20px; - animation-fill-mode: forwards; - animation-duration: 500ms; - top: 20px; - input{ - position:absolute; - opacity: 0; - height: 0; - width: 0; - } - .round-toggle-slider{ - height: 35px; - width: 35px; - background-color: white; - border:1px solid grey; - border-radius: 20px; - transition: transform 500ms ease-in-out; - margin-left: 0px; - margin-top: 0.5px; - } - -} + @keyframes turnon{ from{ background-color: white; |
