tips.css
349 Bytes
.m-tips {
background-color: #fff391;
color: #f47163;
line-height: 35px;
font-size: 15px;
font-weight: normal;
text-align: center;
opacity: 0;
margin-top: -35px;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.m-tips.animate {
opacity: 1;
margin-top: 0;
}