You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
741 B
59 lines
741 B
|
|
#menuLeft{
|
|
background: $light-grey;
|
|
}
|
|
|
|
#MainContent{
|
|
margin-top: 0;
|
|
min-height: auto;
|
|
}
|
|
|
|
.sheet-box{
|
|
border: 1px solid $green;
|
|
background: white;
|
|
min-height: calc(100vh - 170px);
|
|
}
|
|
|
|
.admin-list{
|
|
margin: 10px 0;
|
|
border-top: 1px solid $light-grey;
|
|
border-bottom: 1px solid $light-grey;
|
|
.admin-list-item{
|
|
width: 100%;
|
|
padding: 5px;
|
|
position: relative;
|
|
transition: .4s;
|
|
|
|
&:hover{
|
|
/* opacity: .7; */
|
|
}
|
|
|
|
.right{
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and ( min-width: 768px ) {
|
|
|
|
#MainContent{
|
|
margin-top: 120px;
|
|
}
|
|
#menuLeft{
|
|
min-height: calc(100vh - 120px);
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
|
|
}
|
|
|
|
|
|
|