-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard.css
61 lines (49 loc) · 894 Bytes
/
keyboard.css
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
.button {
cursor: pointer;
color: #393939;
background-color: #f4f4f4;
border: 1px solid #393939;
padding: 2px;
text-align: center;
border-radius: 5px;
display: inline-block;
margin: 2px;
}
.button:hover {
background-color: #8d8d8d;
}
.virtual_keyboard_input_wrapper {
position: relative;
}
.virtual_keyboard_toggle_anchor {
position: absolute;
right: 0px;
top: 0px;
}
.virtual_keyboard_toggle {
visibility: hidden;
}
.virtual_keyboard {
position: fixed;
background-color: #ffffff;
border: 1px solid rgb(52, 58, 64);
border-radius: 5px;
width: 120px;
padding: 4px;
z-index: 9999;
}
.virtual_keyboard_letter_button {
width: 20px;
}
.virtual_keyboard_shift_button {
width: 80px;
}
.virtual_keyboard_overlay {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(255, 255, 255, 0.3);
z-index: 10;
}