12345678910111213141516171819202122232425262728293031323334353637383940 |
- .notify{
- /*
- animation important
- */
- animation-name:notify;
- animation-duration: 3s;
- /* Align details */
- position:absolute;
- display: flex;
- left:0px;
- top:0px;
- right:0px;
- bottom: 0px;
- width:100%;
- height:auto;
- padding:10px 5px;
- z-index: 20;
- justify-content: center;
- align-items: center;
- /* Font detals */
- color:#fff;
- font-size:2em;
- background-color: #6c5ce7;
- /* color of "para lá" */
- opacity: 0;
- }
- .notifyFui{
- display:none;
- }
- @keyframes notify{
- 0%{
- opacity: 0
- }
- 20%,50%,60%{
- opacity: 1
- }
- 100%{
- opacity: 0
- }
- }
|