Fax-Me/css/index.sass
2020-08-19 14:28:41 -04:00

58 lines
982 B
Sass

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)