1.sidr {
2 background: #fff;
3 display: block;
4 position: fixed;
5 top: 0;
6 height: 100%;
7 z-index: 999999;
8 width: 320px;
9 overflow-x: hidden;
10 overflow-y: auto;
11}
12
13.sidr .sidr-inner {
14 padding: 0 0 15px;
15}
16
17.sidr.right {
18 left: auto;
19 right: -320px;
20}
21
22.sidr.left {
23 left: -320px;
24 right: auto;
25}
26
27.sidr {
28 padding-left: 15px;
29 padding-right: 15px;
30}
31
32@media only screen and (min-width: 992px) {
33 body.sidr-open:before {
34 content: "";
35 left: 0;
36 top: 0;
37 z-index: 102;
38 width: 100%;
39 height: 100%;
40 position: fixed;
...
</html>