blob: 60f0a28ddc0b24094d4042f1aa5e380b8753b7cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
div#upload-run{
position: absolute;
left: 50%;
z-index: 20;
width: 320px; height: auto;
/* background-color: red; */
transform: translateY(-68%);
}
#upload-run-menu{
position: absolute;
left: calc(50% + 160px); top: 130px;
transform: translateX(-50%);
background-color: #2b2e46;
z-index: 2; color: white;
}
#upload-run-menu-add,
#upload-run-menu-edit{
box-shadow: 0 0 40px 16px black;
outline: 8px solid #2b2e46;
border-radius: 20px;
font-size: 40px;
display: grid;
grid-template-columns: 20% 20% 20% 20% 20%;
}
#upload-run-menu-add>div,
#upload-run-menu-edit>div{
display: grid;
margin: 20px;
width: 200px;
font-size: 20px;
}
#upload-run-block{
position: absolute;
background-color: black;
opacity: .3;
left: 320px;
width: calc(100% - 320px);
height: 100%;
z-index: 2;
cursor: no-drop;
}
|