982aace898
inizio pagina timbratura
38 lines
709 B
CSS
38 lines
709 B
CSS
.all {
|
|
position: sticky;
|
|
bottom: 0rem;
|
|
transition: bottom 0.3s linear 0.2s;
|
|
}
|
|
.navBottomContainer {
|
|
width: 100%;
|
|
background-color: #34495E;
|
|
border-radius: 12px 12px 0px 0px;
|
|
height: 100%;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.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: 1.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);
|
|
padding: 0;
|
|
margin: 0;
|
|
} |