diff options
Diffstat (limited to 'frontend/src/css/UploadRunDialog.css')
| -rw-r--r-- | frontend/src/css/UploadRunDialog.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/frontend/src/css/UploadRunDialog.css b/frontend/src/css/UploadRunDialog.css new file mode 100644 index 0000000..60f0a28 --- /dev/null +++ b/frontend/src/css/UploadRunDialog.css | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | div#upload-run{ | ||
| 2 | position: absolute; | ||
| 3 | left: 50%; | ||
| 4 | z-index: 20; | ||
| 5 | width: 320px; height: auto; | ||
| 6 | /* background-color: red; */ | ||
| 7 | |||
| 8 | transform: translateY(-68%); | ||
| 9 | } | ||
| 10 | |||
| 11 | |||
| 12 | #upload-run-menu{ | ||
| 13 | position: absolute; | ||
| 14 | left: calc(50% + 160px); top: 130px; | ||
| 15 | transform: translateX(-50%); | ||
| 16 | background-color: #2b2e46; | ||
| 17 | z-index: 2; color: white; | ||
| 18 | } | ||
| 19 | |||
| 20 | #upload-run-menu-add, | ||
| 21 | #upload-run-menu-edit{ | ||
| 22 | box-shadow: 0 0 40px 16px black; | ||
| 23 | outline: 8px solid #2b2e46; | ||
| 24 | border-radius: 20px; | ||
| 25 | font-size: 40px; | ||
| 26 | display: grid; | ||
| 27 | grid-template-columns: 20% 20% 20% 20% 20%; | ||
| 28 | } | ||
| 29 | |||
| 30 | #upload-run-menu-add>div, | ||
| 31 | #upload-run-menu-edit>div{ | ||
| 32 | display: grid; | ||
| 33 | margin: 20px; | ||
| 34 | width: 200px; | ||
| 35 | font-size: 20px; | ||
| 36 | } | ||
| 37 | |||
| 38 | #upload-run-block{ | ||
| 39 | position: absolute; | ||
| 40 | background-color: black; | ||
| 41 | opacity: .3; | ||
| 42 | left: 320px; | ||
| 43 | width: calc(100% - 320px); | ||
| 44 | height: 100%; | ||
| 45 | z-index: 2; | ||
| 46 | cursor: no-drop; | ||
| 47 | } | ||