39 lines
715 B
CSS
39 lines
715 B
CSS
.all {
|
|
position: relative;
|
|
height: 10px;
|
|
bottom: -1.875rem;
|
|
}
|
|
.navBottomContainer {
|
|
width: 100%;
|
|
background-color: #34495E;
|
|
border-radius: 12px 12px 0px 0px;
|
|
height: 10rem;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.all {
|
|
transition: bottom 0.3s linear 0.2s;
|
|
}
|
|
.slider {
|
|
text-align: center;
|
|
}
|
|
/*.all:hover {
|
|
bottom: 2rem;
|
|
}*/
|
|
.all:hover + .backDrop {
|
|
display: block;
|
|
}
|
|
navBottomContainer div {
|
|
background-color: #ff0000;
|
|
height: 5rem;
|
|
width: 5rem;
|
|
}
|
|
.slider button {
|
|
border: none;
|
|
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);
|
|
} |