Initial commit 2

This commit is contained in:
Merrick Rumel 2020-08-19 14:28:41 -04:00
parent 8c6a83f3be
commit 7c1ac022cb
28 changed files with 8640 additions and 0 deletions

58
css/index.sass Normal file
View file

@ -0,0 +1,58 @@
html body #mainContent
height: 100vh
#uploadSquare
background: gray
width: 600px
height: 300px
padding: 1em
border-radius: .5em
color: white
.successGlow
animation: successGlow 2s
animation-iteration-count: 1
@keyframes successGlow
30%
box-shadow: 0px 0px 100px 50px rgb(0, 255, 0)
70%
box-shadow: 0px 0px 100px 50px rgb(0, 255, 0)
.failureGlow
animation: failureGlow 1s
animation-iteration-count: 1
@keyframes failureGlow
0%
transform: translate(0px, 0px)
25%
transform: translate(5px, 0px)
30%
transform: translate(0px, 0px)
box-shadow: 0px 0px 100px 50px red
40%
transform: translate(-5px, 0px)
60%
transform: translate(5px, 0px)
70%
transform: translate(0px, 0px)
box-shadow: 0px 0px 100px 50px red
75%
transform: translate(-5px, 0px)
100%
transform: translate(0px, 0px)