sunshine-layx
Version:
A magical window.
50 lines (41 loc) • 983 B
CSS
#layx-salver-bar {
position: fixed;
}
#layx-salver-bar.layx-animate-salver-slide-up {
animation-name: layx-animate-salver-slide-up;
}
#layx-salver-bar.layx-animate-salver-slide-down {
animation-name: layx-animate-salver-slide-down;
}
.layx-salver-button {
position: relative;
overflow: hidden;
background-color: #f1f1f1;
}
.layx-salver-button:after {
position: absolute;
content: '';
border-top: 5px solid #ddd;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.layx-salver-button:hover {
background-color: #e9e9e9;
}
.layx-salver-button.layx-salver-button-active {
background-color: #f5f5f5;
}
.layx-salver-button.layx-salver-button-active:after {
border-top: 5px solid #3baced;
}
.layx-salver-button .layx-icon {
font-size: 20px;
color: #666;
}
.layx-salver-button.layx-salver-button-active .layx-icon {
color: #3baced;
}