Spaces:
Sleeping
Sleeping
File size: 1,394 Bytes
7aec436 |
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 74 |
.sa-gamepad-container {
margin-right: 0.2rem;
}
.sa-gamepad-spacer {
display: flex;
width: 100%;
justify-content: flex-end;
}
.sa-gamepad-popup-outer {
/* above fullscreen */
z-index: 99999;
}
.sa-gamepad-popup {
box-sizing: border-box;
width: 700px;
max-height: min(800px, 85vh);
height: 100%;
max-width: 85%;
margin: 50px auto;
display: flex;
flex-direction: column;
}
.sa-gamepad-popup-content {
background-color: white;
padding: 1.5rem 2.25rem;
height: 100%;
overflow-y: auto;
}
.sa-gamepad-popup [class*="modal_header-item-title"] {
margin: 0 -20rem 0 0;
}
.sa-gamepad-cursor {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
user-select: none;
pointer-events: none;
will-change: transform;
image-rendering: optimizeSpeed;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
.sa-gamepad-cursor-down {
filter: invert(100%);
}
.sa-gamepad-small .sa-gamepad-container[data-editor-mode="editor"] {
display: none !important;
}
.sa-gamepad-hide-cursor {
cursor: none;
}
.sa-gamepad-browser-support-warning {
font-weight: bold;
margin-bottom: 10px;
}
.sa-gamepad-store-settings {
display: none;
}
.sa-gamepad-store-settings > input {
margin-right: 4px;
}
.sa-gamepad-has-controller .sa-gamepad-store-settings {
display: block;
}
|