Spaces:
Runtime error
Runtime error
Create scrollbar.css
Browse files- scrollbar.css +46 -0
scrollbar.css
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.output-html {
|
2 |
+
overflow-x: auto;
|
3 |
+
}
|
4 |
+
|
5 |
+
.output-html::-webkit-scrollbar {
|
6 |
+
-webkit-appearance: none;
|
7 |
+
}
|
8 |
+
|
9 |
+
.output-html::-webkit-scrollbar:vertical {
|
10 |
+
width: 0px;
|
11 |
+
}
|
12 |
+
|
13 |
+
.output-html::-webkit-scrollbar:horizontal {
|
14 |
+
height: 11px;
|
15 |
+
}
|
16 |
+
|
17 |
+
.output-html::-webkit-scrollbar-thumb {
|
18 |
+
border-radius: 8px;
|
19 |
+
border: 2px solid white;
|
20 |
+
background-color: rgba(0, 0, 0, .5);
|
21 |
+
}
|
22 |
+
|
23 |
+
.output-html::-webkit-scrollbar-track {
|
24 |
+
background-color: #fff;
|
25 |
+
border-radius: 8px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.spans {
|
29 |
+
min-height: 75px;
|
30 |
+
}
|
31 |
+
|
32 |
+
svg {
|
33 |
+
margin: auto;
|
34 |
+
display: block;
|
35 |
+
}
|
36 |
+
|
37 |
+
#submit-btn {
|
38 |
+
z-index: 999;
|
39 |
+
}
|
40 |
+
|
41 |
+
#viz {
|
42 |
+
width: 100%;
|
43 |
+
top: -30px;
|
44 |
+
object-fit: scale-down;
|
45 |
+
object-position: 0 100%;
|
46 |
+
}
|