Add some movement to your style. In this example we will slide the headerbar, and slide it upwards (top).
Demo: - you can peek at my headerbar, i current have this installed.
Open: - Your last loading css file. (not responsive) and add,
CSS
Code: Select all
@keyframes slide-top {
0% {
-webkit-transform: translateY(50px);
transform: translateY(50px);
opacity: 0;
}
100% {
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
opacity: 1;
}
}
Code: Select all
.headerbar
Code: Select all
webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
Yes, you can add this code to navbar, forumbg, forabg etc.. add just like you added to headerbar.
If you add this to forumbg, add this to your css, it will add some margin bottom to the action bar
Code: Select all
.action-bar {
margin: 8px 0;
}