]> git.proxmox.com Git - rustc.git/blob - src/vendor/mdbook/src/theme/stylus/sidebar.styl
New upstream version 1.20.0+dfsg1
[rustc.git] / src / vendor / mdbook / src / theme / stylus / sidebar.styl
1 @require 'variables'
2
3 .sidebar {
4 position: absolute
5 left: 0
6 top: 0
7 bottom: 0
8 width: $sidebar-width
9 overflow-y: auto
10 padding: 10px 10px
11 font-size: 0.875em
12 box-sizing: border-box
13 -webkit-overflow-scrolling: touch
14
15 // Animation: slide away
16 transition: left 0.5s
17
18 @media only screen and (max-width: 1060px) {
19 left: - $sidebar-width
20 }
21
22 code {
23 line-height: 2em;
24 }
25 }
26
27 .sidebar-hidden .sidebar {
28 left: - $sidebar-width
29 }
30
31 .sidebar-visible .sidebar {
32 left: 0
33 }
34
35 .chapter {
36 list-style: none outside none
37 padding-left: 0
38 line-height: 2.2em
39
40 li a {
41 padding: 5px 0
42 text-decoration: none
43
44 &:hover { text-decoration: none }
45 }
46
47 .spacer {
48 width: 100%
49 height: 3px
50 margin: 10px 0px
51 }
52 }
53
54 .section {
55 list-style: none outside none
56 padding-left: 20px
57 line-height: 1.9em
58
59 li {
60 text-overflow: ellipsis
61 overflow: hidden
62 white-space: nowrap
63 }
64 }