-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsrc
More file actions
41 lines (36 loc) · 681 Bytes
/
src
File metadata and controls
41 lines (36 loc) · 681 Bytes
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
/* the keyboard we used for Lexus */
.keyboard-container {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: #000000;
color: #FFFFFF;
font-family: sans-serif;
font-size: 26px;
padding: 56px 24px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
.keyboard-container-hidden {
padding: 0;
}
.keyboard-row {
text-align: center;
}
.keyboard-key {
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
margin: 4px;
display: inline-block;
background: #636363;
}
.keyboard-key:active {
background: #777777;
}