the fade
This commit is contained in:
@ -1,3 +1,13 @@
|
||||
#container {
|
||||
opacity: 100%;
|
||||
-webkit-animation: fade 0.9s ease-in;
|
||||
-moz-animation: fade 0.9s ease-in;
|
||||
-ms-animation: fade 0.9s ease-in;
|
||||
-o-animation: fade 0.9s ease-in;
|
||||
animation: fade 0.9s ease-in;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.error {
|
||||
background-color: #232323;
|
||||
width: 100%;
|
||||
@ -78,4 +88,10 @@
|
||||
margin-top: 10%;
|
||||
margin-right: 20px;
|
||||
line-height: 35px;
|
||||
}
|
||||
|
||||
@keyframes fade {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user