|
body { |
|
font-family: sans-serif; |
|
margin: 0; |
|
padding: 0; |
|
|
|
background-color: #f2f2f2; |
|
} |
|
|
|
|
|
#error-message { |
|
color: white; |
|
background-color: red; |
|
padding: 30px; |
|
border-radius: 5px; |
|
font-size: 14px; |
|
display: none; |
|
|
|
|
|
font: size 32px; |
|
font-weight: bold; |
|
|
|
position: fixed; |
|
|
|
top: 90%; |
|
left: 81%; |
|
transform: translate(-50%, -50%); |
|
|
|
|
|
width: 400px; |
|
|
|
text-align: center; |
|
z-index: 999; |
|
|
|
animation: fade-in 0.5s ease-in-out; |
|
|
|
} |
|
|
|
@keyframes fade-in { |
|
from { |
|
opacity: 0; |
|
} |
|
|
|
to { |
|
opacity: 1; |
|
} |
|
} |
|
|
|
#error-message.fade-out { |
|
animation: fade-out 0.5s ease-in-out backwards; |
|
|
|
} |
|
|
|
@keyframes fade-out { |
|
from { |
|
opacity: 1; |
|
} |
|
|
|
to { |
|
opacity: 0; |
|
} |
|
} |
|
|
|
|
|
|
|
|