36 lines
730 B
CSS
36 lines
730 B
CSS
.navBottomContainer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 10px;
|
|
background-color: #34495E;
|
|
border-radius: 12px 12px 0px 0px;
|
|
transition: height 0.3s linear 0.2s;
|
|
text-align: center;
|
|
padding-top: 40px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.slider {
|
|
text-align: center;
|
|
}
|
|
.navBottomContainer:hover {
|
|
height: 15rem;
|
|
}
|
|
.navBottomContainer:hover + .backDrop {
|
|
display: block;
|
|
}
|
|
navBottomContainer div {
|
|
background-color: #ff0000;
|
|
height: 5rem;
|
|
width: 5rem;
|
|
}
|
|
.slider button {
|
|
border: none;
|
|
left: 10rem;
|
|
width: 4.37rem;
|
|
height: 2.5rem;
|
|
background-color: rgba(149, 165, 166, 0.5);
|
|
border-radius: 12px 12px 0px 0px;
|
|
box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.3);
|
|
} |