tips.css 478 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;
}
.mini-tips {
  text-align: center;
  padding: 10px;
}
.mini-tips > p {
  color: #f47163;
  font-size: 15px;
  margin-top: 5px;
}