diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-07-02 00:35:06 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-07-02 00:35:06 +0200 |
| commit | 3e2c1d432d73823e66e19d0081b498ace467b231 (patch) | |
| tree | 67a8b66eb8334b97e031f2c91da668591132ede3 /animism-align/frontend/views/align/align.css | |
| parent | 250527589e003420a84f36c4191d2e574f1ad28c (diff) | |
display the form
Diffstat (limited to 'animism-align/frontend/views/align/align.css')
| -rw-r--r-- | animism-align/frontend/views/align/align.css | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/animism-align/frontend/views/align/align.css b/animism-align/frontend/views/align/align.css index 38a1c8b..a366d40 100644 --- a/animism-align/frontend/views/align/align.css +++ b/animism-align/frontend/views/align/align.css @@ -6,6 +6,7 @@ height: 100%; display: flex; flex-direction: row; + justify-content: space-between; background: linear-gradient( 0deg, rgba(0, 0, 64, 0.5), @@ -13,6 +14,9 @@ ); padding: 0; } + +/* Timeline */ + canvas { display: block; } @@ -23,7 +27,9 @@ canvas { width: 300px; cursor: crosshair; } - +.timelineColumn { + position: relative; +} .ticks .tick { position: absolute; right: 0; @@ -64,6 +70,9 @@ canvas { text-align: right; text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000; } + +/* Audio player */ + .playButton { position: absolute; top: 0; left: 0; @@ -81,3 +90,24 @@ canvas { .playButton.paused { background-image: url('/static/img/icons_play_white.svg'); } + +/* Script */ + +.script { + align-self: flex-end; + height: 100%; +} + +/* Annotations */ + +.annotations { + position: relative; + width: 300px; +} +.annotationForm { + position: absolute; + left: 0; +} +.annotationForm .row { + justify-content: space-between; +}
\ No newline at end of file |
