blob: 2cad3a7c1bb1e12902405ef04c4933ebcffc3685 (
plain) (
tree)
|
|
/*
* Divid stylesheet
*/
//Imports the bootstrap-variables
@import "variables.less";
// The rest comes here
div#wrapper {
margin-top: @navbarHeight;
background: @yellow;
}
.bs-docs-sidenav {
background-color: @white;
width: 200px;
top: 100px;
padding: 0;
margin: 0;
-webkit-border-radius: @borderRadiusLarge;
-moz-border-radius: @borderRadiusLarge;
border-radius: @borderRadiusLarge;
-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065);
-moz-box-shadow: 0 1px 4px rgba(0,0,0,.065);
box-shadow: 0 1px 4px rgba(0,0,0,.065);
}
.bs-docs-sidenav > li > a {
display: block;
width: 190px \9;
margin: 0 0 -1px;
padding: 8px 14px;
}
.bs-docs-sidenav > li > a:hover {
background-color: @blue;
}
|