overleaf/services/web/public/stylesheets/app/editor/left-menu.less
2014-07-02 11:06:20 +01:00

92 lines
No EOL
1.5 KiB
Text

#left-menu {
position: absolute;
width: 260px;
padding: (@line-height-computed / 2);
top: 0;
bottom: 0;
background-color: #f4f4f4;
z-index: 100;
overflow-y: auto;
overflow-x: hidden;
-webkit-transition: left ease-in-out 0.35s;
transition: left ease-in-out 0.35s;
font-size: 14px;
left: -280px;
&.shown {
left: 0;
}
h4 {
font-family: @font-family-sans-serif;
font-weight: 400;
font-size: 1rem;
margin: (@line-height-computed / 2) 0;
padding-bottom: (@line-height-computed / 4);
color: @gray-light;
border-bottom: 1px solid @gray-lighter;
}
h4:first-child {
margin-top: 0;
}
ul.nav-downloads {
li {
display: inline-block;
text-align: center;
width: 100px;
a {
color: @gray-dark;
&:hover, &:active {
background-color: @link-color;
color: white;
}
}
.pdf-disabled {
color: @gray-light;
}
i {
margin-bottom: (@line-height-computed / 4);
}
}
}
form.settings {
label {
font-weight: normal;
color: @gray-dark;
margin-bottom: 0;
padding-top: 8px;
}
select.form-control {
height: 34px;
background: none;
border: none;
box-shadow: none;
color: @link-color;
cursor: pointer;
font-size: 14px;
font-weight: 700;
}
.form-controls {
padding: 0 (@line-height-computed / 4);
&:hover {
background-color: @link-color;
select.form-control {
color: white;
}
label {
color: white;
}
}
}
}
}
#left-menu-mask {
.full-size;
opacity: 0.4;
background-color: #999;
z-index: 99;
}