withfront
Version:
Tools for frontend development especially with Bootstrap 3.x and jQuery 3.x also FontAwesome, jsCookie and more
50 lines (46 loc) • 781 B
CSS
/* with Appear Bottom Button {js: wAppearBottomButton.init()} */
.wabb {
position: fixed;
bottom: -150px;
z-index: 999;
}
.wabb.right {
right: 105px;
}
.wabb.left {
left: 105px;
}
@media (max-width: 767px) {
.wabb {
bottom: 20px ;
}
.wabb.right {
right: 75px;
}
.wabb.left {
left: 75px;
}
}
/* with Appear Top Button {js: wAppearBottomButton.init()} */
.watb {
position: fixed;
top: -150px;
z-index: 999;
}
.watb.right {
right: 105px;
}
.watb.left {
left: 105px;
}
@media (max-width: 767px) {
.watb {
top: 20px ;
}
.watb.right {
right: 75px;
}
.watb.left {
left: 75px;
}
}