2014-09-10 22:40:55 +00:00
|
|
|
#panel {
|
|
|
|
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-moz-transition: -moz-transform 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-o-transition: -o-transform 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-ms-transition: -ms-transform 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
transition: transform 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
background: #282828;
|
|
|
|
}
|
|
|
|
.autoplace-true #panel {
|
|
|
|
width: 245px;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.autoplace-true.touch-true #panel {
|
|
|
|
width: 320px;
|
|
|
|
}
|
|
|
|
.docked-false #panel {
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
.docked-true #panel {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
overflow: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
.docked-true.open-false #panel {
|
|
|
|
-webkit-transform: translate3d(245px, 0, 0);
|
|
|
|
-moz-transform: translate3d(245px, 0, 0);
|
|
|
|
-o-transform: translate3d(245px, 0, 0);
|
|
|
|
-ms-transform: translate3d(245px, 0, 0);
|
|
|
|
transform: translate3d(245px, 0, 0);
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.docked-true.open-false.touch-true #panel {
|
|
|
|
-webkit-transform: translate3d(320px, 0, 0);
|
|
|
|
-moz-transform: translate3d(320px, 0, 0);
|
|
|
|
-o-transform: translate3d(320px, 0, 0);
|
|
|
|
-ms-transform: translate3d(320px, 0, 0);
|
|
|
|
transform: translate3d(320px, 0, 0);
|
|
|
|
}
|
|
|
|
#controllers {
|
|
|
|
font: 10px 'Lucida Grande', sans-serif;
|
|
|
|
color: #ecebe0;
|
|
|
|
}
|
|
|
|
.touch-true #controllers {
|
|
|
|
font-size: 13.5px;
|
|
|
|
}
|
|
|
|
.docked-true #controllers {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#closeButton {
|
|
|
|
font: 10px 'Lucida Grande', sans-serif;
|
|
|
|
color: #ecebe0;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
2014-10-11 19:39:16 +00:00
|
|
|
padding: 6.75px 9px;
|
2014-09-10 22:40:55 +00:00
|
|
|
}
|
|
|
|
.touch-true #closeButton {
|
|
|
|
font-size: 13.5px;
|
|
|
|
}
|
2014-09-15 22:39:43 +00:00
|
|
|
#dockedContent:not(:empty) {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 245px;
|
|
|
|
}
|
|
|
|
.open-false #dockedContent:not(:empty) {
|
|
|
|
right: 0;
|
|
|
|
}
|
2014-09-10 22:40:55 +00:00
|
|
|
gui-button {
|
|
|
|
font: 10px 'Lucida Grande', sans-serif;
|
|
|
|
color: #ecebe0;
|
|
|
|
background: #282828;
|
2014-10-11 19:39:16 +00:00
|
|
|
height: 3em;
|
2014-09-10 22:40:55 +00:00
|
|
|
position: absolute;
|
|
|
|
-webkit-transition: all 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-moz-transition: all 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-o-transition: all 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
-ms-transition: all 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
transition: all 0.4s cubic-bezier(0, 0.8, 0, 1);
|
|
|
|
}
|
|
|
|
.touch-true gui-button {
|
|
|
|
font-size: 13.5px;
|
|
|
|
}
|
|
|
|
.docked-true gui-button {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2014-10-11 19:39:16 +00:00
|
|
|
width: 4.5em;
|
|
|
|
height: 4.5em;
|
2014-09-10 22:40:55 +00:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: #282828;
|
|
|
|
}
|
|
|
|
.docked-true.open-false gui-button {
|
|
|
|
-webkit-transform: translate3d(-245px, 0, 0);
|
|
|
|
-moz-transform: translate3d(-245px, 0, 0);
|
|
|
|
-o-transform: translate3d(-245px, 0, 0);
|
|
|
|
-ms-transform: translate3d(-245px, 0, 0);
|
|
|
|
transform: translate3d(-245px, 0, 0);
|
|
|
|
}
|
|
|
|
.docked-true.open-false.touch-true gui-button {
|
|
|
|
-webkit-transform: translate3d(-320px, 0, 0);
|
|
|
|
-moz-transform: translate3d(-320px, 0, 0);
|
|
|
|
-o-transform: translate3d(-320px, 0, 0);
|
|
|
|
-ms-transform: translate3d(-320px, 0, 0);
|
|
|
|
transform: translate3d(-320px, 0, 0);
|
|
|
|
}
|
|
|
|
.docked-false gui-button {
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|