Skip to content

Commit 3815f10

Browse files
committed
Build for Deployment
1 parent 11da5c0 commit 3815f10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+29040
-20598
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ __pycache__/
44

55
coverage/
66
node_modules/
7-
dist/
87

98
old/*output
109
old/*.scad

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"cSpell.words": ["registryref"],
2222
"editor.codeActionsOnSave": {
23-
"source.fixAll.eslint": true
23+
"source.fixAll.eslint": "explicit"
2424
},
2525
"rpc.enabled": true
2626
}

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3duf.org

dist/animations.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
#resolution-toolbar {
2+
align-content: center;
3+
position: absolute;
4+
width: 500px;
5+
height: 120px;
6+
top: 10px;
7+
right: 100px;
8+
background-color: rgb(250, 250, 250);
9+
z-index: 9;
10+
box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.36);
11+
transition: all 0.4s;
12+
padding-left: 30px;
13+
padding-right: 30px;
14+
padding-top: 5px;
15+
padding-botton: 5px;
16+
opacity: 0.9;
17+
border-radius: 5px;
18+
}
19+
20+
#zoom-toolbar {
21+
align-content: center;
22+
position: absolute;
23+
/*width: 100px;*/
24+
height: 30%;
25+
top: 100px;
26+
right: 30px;
27+
/*background-color: rgb(250, 250, 250);*/
28+
z-index: 9;
29+
transition: all 0.4s;
30+
padding-top: 25px;
31+
padding-botton: 25px;
32+
/*opacity: 0.9;*/
33+
border-radius: 5px;
34+
}
35+
36+
#toolbar-button-panel {
37+
position: absolute;
38+
top: 10px;
39+
right: 10px;
40+
z-index: 9;
41+
}
42+
43+
.showtoolbar {
44+
-webkit-transform: translateY(0);
45+
transform: translateY(0);
46+
visibility: visible;
47+
}
48+
49+
.hidetoolbar {
50+
-webkit-transform: translateY(-100%);
51+
transform: translateY(-100%);
52+
visibility: hidden;
53+
}
54+
55+
.collapse {
56+
display: none;
57+
}

dist/css/app.85a0644e.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/chunk-vendors.acfd7f9b.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/demo.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#canvas_block {
2+
position: fixed;
3+
padding: 0px;
4+
}
5+
6+
#c {
7+
width: 100%;
8+
height: 100%;
9+
}
10+
11+
#button_block {
12+
display: block;
13+
position: fixed;
14+
left: 0;
15+
width: 250px;
16+
height: 100%;
17+
background: #eee;
18+
top: 0;
19+
}
20+
21+
#param-slider-container {
22+
padding: 15;
23+
}
24+
25+
hr {
26+
border: 0;
27+
border-bottom: 1px dashed #ccc;
28+
background: #999;
29+
}
30+
31+
.slider-container {
32+
margin-bottom: 10;
33+
}
34+
35+
.btn-label:first-of-type {
36+
margin-top: 0;
37+
}
38+
39+
.btn-label {
40+
width: 100%;
41+
display: block;
42+
background-color: #1c2b44;
43+
height: auto;
44+
padding: 10px;
45+
font-size: 14px;
46+
margin: 1em 0 1em 0;
47+
color: #eee;
48+
text-shadow: 0 -1px 0 #000;
49+
letter-spacing: 0.1em;
50+
text-transform: uppercase;
51+
font-weight: normal;
52+
box-shadow: 0 2px 0px #ccc;
53+
}

dist/favicon.ico

1.12 KB
Binary file not shown.
84.5 KB
Binary file not shown.
63.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)