| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- * {
- touch-action: none;
- }
- .virtual-keyboard-window {
- user-select: none;
- position: fixed;
- top: 0;
- width: 900px;
- border-radius: 10px;
- box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
- border: 1px solid #ddd;
- background: #ececec;
- z-index: 999;
- overflow: hidden;
- }
- .virtual-keyboard-window .window-content {
- height: 100%;
- }
- .hg-theme-default .hg-button {
- height: 55px;
- font-size: 18px;
- }
- .virtual-keyboard-window .window-top {
- cursor: move;
- text-align: center;
- height: 20px;
- border-top-right-radius: 5px;
- border-top-left-radius: 5px;
- padding: 5px;
- background-color: #ddd;
- color: #333;
- }
- .virtual-keyboard-window .btn-close {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 0;
- width: 50px;
- height: 30px;
- box-sizing: border-box;
- padding: 5px 15px;
- border: none;
- background: none;
- cursor: pointer;
- }
- .keyboard-toggle,
- .logs-toggle {
- width: 20px;
- height: 20px;
- padding: 5px;
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- opacity: 0.5;
- box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
- color: #333;
- border-radius: 4px;
- border: 1px solid #ddd;
- z-index: 999;
- cursor: pointer;
- }
- .logs-window {
- position: absolute;
- top: 0;
- right: 0;
- height: 400px;
- background: rgba(0, 0, 0, 0.3);
- width: 50%;
- color: white;
- padding: 20px;
- overflow: auto;
- display: none;
- }
|