summaryrefslogtreecommitdiff
path: root/assets/css/src/sidebar.css
blob: 2da0f2e3cfb4a3889a104c0f6070b70632c4cb51 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.sidebar-container {
    margin-top: 10px;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: box;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
}

.sidebar-content {
    padding-left: 10px;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;
}

.sidebar {
    padding-right: 10px;
    border-right: 1px dotted #eee;
    font-size: 0.95em;
    max-width: 240px;
    min-width: 190px;
    width: 18%;
    -ms-flex: 0 100px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-box-flex: 0;
    box-flex: 0;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar a {
    text-decoration: none;
}

.sidebar li {
    list-style-type: none;
    line-height: 35px;
    border-bottom: 1px dotted #efefef;
    padding-left: 13px;
}

.sidebar li:hover {
    border-left: 5px solid #555;
    padding-left: 8px;
}

.sidebar li.active {
    border-left: 5px solid #333;
    padding-left: 8px;
}

.sidebar li.active a {
    color: #333;
    font-weight: bold;
}

.sidebar li.active a:focus,
.sidebar li.active a:hover {
    color: #555;
}