blob: e85f206a2e461ecbf099112a1b3d4d373ab4ccab (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
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;
font-family: BarlowSemicondensed-SemiBold;
}
#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;
}
#upload-run-menu-add>div,
#upload-run-menu-edit>div{
display: grid;
font-size: 20px;
padding: 0px 15px;
}
#upload-run-block{
position: absolute;
background-color: black;
opacity: .3;
left: 320px;
width: calc(100% - 320px);
height: 100%;
z-index: 2;
cursor: no-drop;
}
.upload-run-dropdown-container .dropdown-cur {
user-select: none;
cursor: pointer;
}
.upload-run-dropdown {
position: absolute;
user-select: none;
cursor: pointer;
z-index: 1000;
background-color: #222538;
border-radius: 10px;
overflow: hidden;
animation: dropdown-in 0.2s ease;
max-height: 300px;
overflow-y: scroll;
width: calc(100% - 30px);
}
.upload-run-dropdown div {
padding: 8px;
}
.upload-run-dropdown div:hover {
background-color: #414669;
}
.upload-run-dropdown.hidden {
display: none;
}
@keyframes dropdown-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
button, input {
background-color: #2b2e46;
border: none;
font-family: BarlowSemiCondensed-Regular;
color: #CDCFDF;
font-size: 18px;
cursor: pointer;
padding: 5px 0px;
transition: all 0.2s ease;
}
button:hover {
background-color: #222538;
border-radius: 32px;
}
.upload-run-map-container {
display: flex;
flex-direction: column;
}
.upload-run-buttons-container {
display: flex;
margin-top: 10px;
}
.upload-run-buttons-container button {
width: 100%;
}
|