Files
myDrive/src/styles/components/_MoverMenu.scss
T
2020-11-23 21:51:08 -05:00

161 lines
2.8 KiB
SCSS

.movermenu {
width: 400px;
height: 500px;
background: white;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
-webkit-box-shadow: 0 11px 8px 0 rgba(0,0,0,0.2);
box-shadow: 0 11px 8px 0 rgba(0,0,0,0.2);
border: 2px solid #dadce0;
z-index: 4;
@media (max-width: $desktop-breakpoint) {
width: 100%;
height: 100%;
z-index: 4;
}
}
.movermenu__close-button {
width: 32px;
opacity: 0.8;
cursor: pointer;
}
.movermenu__form {
@media (max-width: $desktop-breakpoint) {
width: 100%;
display: flex;
justify-content: center
}
}
.movermenu__nav_wrapper {
width: 100%;
height: 32px;
/* background: green; */
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.movermenu__main_wrapper {
width: 100%;
height: 341px;
overflow: scroll;
@media (max-width: $desktop-breakpoint) {
width: 100%;
height: calc(100% - 155px);
}
}
.movermenu__search_wrapper {
width: 100%;
height: 48px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.movermenu__input {
border: 1px solid #cacccd;
border-radius: 2px;
height: 32px;
font-size: 1.8rem;
font-weight: 300;
padding: 1.2rem;
margin: 0 0 1.2rem 0;
width: 381px;
margin-top: 11px;
background: #f1f3f4;
@media (max-width: $desktop-breakpoint) {
height: 41px;
font-size: 1.9rem;
width: 98%;
}
}
.movermenu__input:focus {
background: white;
outline: none;
border-style: groove;
}
.movermenu__home-button {
width: 32px;
margin-right: 10px;
cursor: pointer;
@media (max-width: $desktop-breakpoint) {
width: 35px;
}
}
.movermenu__home-button--disabled {
cursor: default;
opacity: 0.4;
}
.movermenu__back-button {
width: 32px;
margin-left: 3px;
cursor: pointer;
@media (max-width: $desktop-breakpoint) {
width: 35px;
}
}
.movermenu__back-button--disabled {
opacity: 0.4;
cursor: default;
}
.movermenu__title {
color: black;
font-size: 20px;
font-weight: 200;
margin-left: -6px;
max-width: 55%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.movermenu__button {
margin-right: 10px;
color: white;
background: #3c85ed;
font-size: 12px;
border: none;
display: inline-block;
text-decoration: none;
line-height: 1;
border-radius: 2px;
padding: 9px;
}
.movermenu__button_wrapper {
width: 100%;
/* background: blue; */
height: 36px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
}