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
|
body {
width: 230px;
min-height: auto;
}
html,
body {
margin: 0;
}
.hide {
display: none !important;
}
.button {
display: flex;
margin: 0 auto;
justify-content: space-between;
width: 100%;
}
.space {
height: 10px;
}
input {
height: 23px;
width: 46px;
}
.button h4 {
font-size: 16px;
max-width: 160px;
}
#instance {
max-width: 110px;
max-height: 22px;
overflow-x: scroll;
white-space: nowrap;
scrollbar-width: none;
-ms-overflow-style: none;
}
#instance::-webkit-scrollbar {
display: none;
}
#instance::before {
background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
position: absolute;
width: 5px;
height: 22px;
content: "";
display: block;
pointer-events: none;
}
#end::before {
background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
position: absolute;
width: 5px;
height: 22px;
content: "";
display: block;
pointer-events: none;
top: 14px;
left: 156px;
}
|