blob: 2cad3a7c1bb1e12902405ef04c4933ebcffc3685 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* 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;
}
|