responsive: burger menu ok, started generale layout

This commit is contained in:
2021-11-25 19:55:08 +01:00
parent 072ea7de50
commit 62a9afcc33
20 changed files with 2877 additions and 5137 deletions
@@ -2,12 +2,36 @@
/** colors */
/** jscrollpane */
.jspScrollable .jspContainer .jspVerticalBar {
width: 10px;
background-color: #f2f2f2;
width: 4px;
background-color: #F2F2F2;
}
.jspScrollable .jspContainer .jspVerticalBar .jspTrack {
.jspScrollable .jspContainer .jspHorizontalBar {
height: 4px;
background-color: #F2F2F2;
}
.jspScrollable .jspContainer .jspTrack {
background-color: transparent;
}
.jspScrollable .jspContainer .jspVerticalBar .jspTrack .jspDrag {
background-color: #77787b;
.jspScrollable .jspContainer .jspTrack .jspDrag {
background-color: #77787B;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
-webkit-opacity: 0.6;
opacity: 0.6;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
-o-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.jspScrollable .jspContainer .jspTrack:hover .jspDrag {
-moz-opacity: 1;
-khtml-opacity: 1;
-webkit-opacity: 1;
opacity: 1;
}