sample optimizations

This commit is contained in:
Kyle
2020-04-23 11:18:23 -07:00
parent 062bd28694
commit 38339cdda5
17 changed files with 4 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 815 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 MiB

After

Width:  |  Height:  |  Size: 857 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 MiB

After

Width:  |  Height:  |  Size: 681 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 677 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 MiB

After

Width:  |  Height:  |  Size: 858 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

After

Width:  |  Height:  |  Size: 744 KiB

View File

@@ -259,14 +259,12 @@ input[type='checkbox'], select, option, input[type='file'], button {
to {opacity: 1;} to {opacity: 1;}
} }
@keyframes slide-from-left { @keyframes slide-from-left {
0% {position: relative; left: -100vw;} 0% {transform: translate(-100vw, 0);}
75% {position: relative; left: -10px;} 100% {transform: translate(0, 0);}
100% {position: relative; left: 0px;}
} }
@keyframes slide-from-right { @keyframes slide-from-right {
0% {position: relative; left: 100vw;} 0% {transform: translate(100vw, 0);}
75% {position: relative; left: 10px;} 100% {transform: translate(0, 0);}
100% {position: relative; left: 0px;}
} }
.layerTitle { .layerTitle {
text-align: center; text-align: center;