desktop: load model from file

This commit is contained in:
Jeffrey Morgan
2023-06-27 12:35:51 -04:00
parent a12df7faf4
commit ad4ffdf754
8 changed files with 271 additions and 151 deletions

View File

@@ -10,3 +10,21 @@ body {
.drag {
-webkit-app-region: drag;
}
.blink {
-webkit-animation: 1s blink step-end infinite;
-moz-animation: 1s blink step-end infinite;
-ms-animation: 1s blink step-end infinite;
-o-animation: 1s blink step-end infinite;
animation: 1s blink step-end infinite;
}
@keyframes blink {
from,
to {
color: transparent;
}
50% {
color: black;
}
}