initial commit

This commit is contained in:
JJ Kasper
2018-05-17 14:31:05 -05:00
commit 2c90d2e7dd
79 changed files with 10684 additions and 0 deletions

15
styles/comps/spinner.sass Normal file
View File

@@ -0,0 +1,15 @@
.spinner
height: 24px;
width: 24px;
border-radius: 100%;
border: 2px solid $text;
$noBorder: none;
border-right: $noBorder;
border-bottom: $noBorder;
animation: spinner 500ms linear infinite;
@keyframes spinner
from
transform: rotate(0deg);
to
transform: rotate(360deg);