Spaces:
Running
Running
Moved CSS to its own file
Browse files- demo/src/css_style.py +27 -0
demo/src/css_style.py
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
css = """
|
2 |
+
#model-3d {
|
3 |
+
height: 512px;
|
4 |
+
}
|
5 |
+
#model-2d {
|
6 |
+
height: 512px;
|
7 |
+
margin: auto;
|
8 |
+
}
|
9 |
+
#upload {
|
10 |
+
height: 110px;
|
11 |
+
}
|
12 |
+
#run-button {
|
13 |
+
height: 110px;
|
14 |
+
width: 150px;
|
15 |
+
}
|
16 |
+
#toggle-button {
|
17 |
+
height: 47px;
|
18 |
+
width: 150px;
|
19 |
+
}
|
20 |
+
#logs-button {
|
21 |
+
height: 47px;
|
22 |
+
width: 150px;
|
23 |
+
}
|
24 |
+
#logs {
|
25 |
+
height: auto
|
26 |
+
}
|
27 |
+
"""
|