howard 2021-05-03 21:03:17 -07:00
parent 46a60ee966
commit c587ee2cf7
9 changed files with 199 additions and 17 deletions

BIN
3dprint.mp4 Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

214
app.css
View File

@ -42,9 +42,24 @@
background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
} }
.bg-green-600 { .bg-green-500 {
--tw-bg-opacity: 1; --tw-bg-opacity: 1;
background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}
.bg-green-800 {
--tw-bg-opacity: 1;
background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}
.bg-green-900 {
--tw-bg-opacity: 1;
background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}
.hover\:bg-gray-300:hover {
--tw-bg-opacity: 1;
background-color: rgba(212, 212, 212, var(--tw-bg-opacity));
} }
.hover\:bg-gray-500:hover { .hover\:bg-gray-500:hover {
@ -57,23 +72,59 @@
background-color: rgba(82, 82, 82, var(--tw-bg-opacity)); background-color: rgba(82, 82, 82, var(--tw-bg-opacity));
} }
.hover\:bg-green-600:hover {
--tw-bg-opacity: 1;
background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}
.border-gray-50 { .border-gray-50 {
--tw-border-opacity: 1; --tw-border-opacity: 1;
border-color: rgba(250, 250, 250, var(--tw-border-opacity)); border-color: rgba(250, 250, 250, var(--tw-border-opacity));
} }
.border-gray-300 {
--tw-border-opacity: 1;
border-color: rgba(212, 212, 212, var(--tw-border-opacity));
}
.border-gray-500 {
--tw-border-opacity: 1;
border-color: rgba(115, 115, 115, var(--tw-border-opacity));
}
.rounded { .rounded {
border-radius: 0.25rem; border-radius: 0.25rem;
} }
.rounded-lg {
border-radius: 0.5rem;
}
.rounded-xl {
border-radius: 0.75rem;
}
.rounded-full { .rounded-full {
border-radius: 9999px; border-radius: 9999px;
} }
.rounded-t-xl {
border-top-left-radius: 0.75rem;
border-top-right-radius: 0.75rem;
}
.border-0 { .border-0 {
border-width: 0px; border-width: 0px;
} }
.border-2 {
border-width: 2px;
}
.border {
border-width: 1px;
}
.border-t-0 { .border-t-0 {
border-top-width: 0px; border-top-width: 0px;
} }
@ -86,6 +137,10 @@
border-left-width: 0px; border-left-width: 0px;
} }
.border-r-2 {
border-right-width: 2px;
}
.border-b { .border-b {
border-bottom-width: 1px; border-bottom-width: 1px;
} }
@ -94,6 +149,10 @@
cursor: pointer; cursor: pointer;
} }
.inline-block {
display: inline-block;
}
.flex { .flex {
display: flex; display: flex;
} }
@ -102,6 +161,10 @@
display: table; display: table;
} }
.grid {
display: grid;
}
.hidden { .hidden {
display: none; display: none;
} }
@ -134,10 +197,18 @@
flex: none; flex: none;
} }
.flex-shrink-0 {
flex-shrink: 0;
}
.font-mono { .font-mono {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
} }
.font-bold {
font-weight: 700;
}
.h-2 { .h-2 {
height: 0.5rem; height: 0.5rem;
} }
@ -146,10 +217,6 @@
height: 1.5rem; height: 1.5rem;
} }
.h-7 {
height: 1.75rem;
}
.h-8 { .h-8 {
height: 2rem; height: 2rem;
} }
@ -162,10 +229,6 @@
height: 3rem; height: 3rem;
} }
.h-3\/5 {
height: 60%;
}
.h-full { .h-full {
height: 100%; height: 100%;
} }
@ -175,11 +238,26 @@
line-height: 1rem; line-height: 1rem;
} }
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.text-lg { .text-lg {
font-size: 1.125rem; font-size: 1.125rem;
line-height: 1.75rem; line-height: 1.75rem;
} }
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.m-auto { .m-auto {
margin: auto; margin: auto;
} }
@ -189,11 +267,42 @@
margin-right: 0.25rem; margin-right: 0.25rem;
} }
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.mx-2 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.my-auto { .my-auto {
margin-top: auto; margin-top: auto;
margin-bottom: auto; margin-bottom: auto;
} }
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.mr-2 {
margin-right: 0.5rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
.ml-2 {
margin-left: 0.5rem;
}
.mb-4 {
margin-bottom: 1rem;
}
.mr-8 { .mr-8 {
margin-right: 2rem; margin-right: 2rem;
} }
@ -211,10 +320,18 @@
overflow: auto; overflow: auto;
} }
.overflow-hidden {
overflow: hidden;
}
.overflow-visible { .overflow-visible {
overflow: visible; overflow: visible;
} }
.overflow-y-auto {
overflow-y: auto;
}
.overflow-x-hidden { .overflow-x-hidden {
overflow-x: hidden; overflow-x: hidden;
} }
@ -275,12 +392,12 @@
left: 0px; left: 0px;
} }
.top-4 { .right-2 {
top: 1rem; right: 0.5rem;
} }
.right-4 { .-top-7 {
right: 1rem; top: -1.75rem;
} }
.-bottom-8 { .-bottom-8 {
@ -320,11 +437,24 @@
fill: currentColor; fill: currentColor;
} }
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-gray-50 { .text-gray-50 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgba(250, 250, 250, var(--tw-text-opacity)); color: rgba(250, 250, 250, var(--tw-text-opacity));
} }
.text-gray-100 {
--tw-text-opacity: 1;
color: rgba(245, 245, 245, var(--tw-text-opacity));
}
.text-gray-200 { .text-gray-200 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgba(229, 229, 229, var(--tw-text-opacity)); color: rgba(229, 229, 229, var(--tw-text-opacity));
@ -345,6 +475,16 @@
color: rgba(239, 68, 68, var(--tw-text-opacity)); color: rgba(239, 68, 68, var(--tw-text-opacity));
} }
.hover\:text-gray-400:hover {
--tw-text-opacity: 1;
color: rgba(163, 163, 163, var(--tw-text-opacity));
}
.hover\:text-green-500:hover {
--tw-text-opacity: 1;
color: rgba(16, 185, 129, var(--tw-text-opacity));
}
.select-none { .select-none {
user-select: none; user-select: none;
} }
@ -381,10 +521,22 @@
width: auto; width: auto;
} }
.w-11\/12 {
width: 91.666667%;
}
.w-full { .w-full {
width: 100%; width: 100%;
} }
.w-min {
width: min-content;
}
.col-span-2 {
grid-column: span 2 / span 2;
}
.transform { .transform {
--tw-translate-x: 0; --tw-translate-x: 0;
--tw-translate-y: 0; --tw-translate-y: 0;
@ -437,6 +589,8 @@
box-sizing: border-box; box-sizing: border-box;
scrollbar-color: lightgray #262626; scrollbar-color: lightgray #262626;
scrollbar-width: thin; scrollbar-width: thin;
border-width: 0;
border-style: solid;
} }
body { body {
@ -560,6 +714,10 @@ input[type=number] {
} }
@media (min-width: 640px) { @media (min-width: 640px) {
.sm\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
} }
@media (min-width: 768px) { @media (min-width: 768px) {
@ -567,8 +725,9 @@ input[type=number] {
display: flex; display: flex;
} }
.md\:justify-between { .md\:text-xl {
justify-content: space-between; font-size: 1.25rem;
line-height: 1.75rem;
} }
} }
@ -576,9 +735,32 @@ input[type=number] {
.lg\:flex { .lg\:flex {
display: flex; display: flex;
} }
.lg\:justify-between {
justify-content: space-between;
}
.lg\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.lg\:text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
} }
@media (min-width: 1280px) { @media (min-width: 1280px) {
.xl\:text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.xl\:text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
} }
@media (min-width: 1536px) { @media (min-width: 1536px) {

BIN
export-to-3dprint.mp4 Normal file

Binary file not shown.

BIN
extrude.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
headphone-stand.json.gz Normal file

Binary file not shown.

BIN
load-file-and-edit.mp4 Normal file

Binary file not shown.

BIN
sculpt.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

BIN
sketch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB