-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbasic.css
More file actions
53 lines (48 loc) · 920 Bytes
/
basic.css
File metadata and controls
53 lines (48 loc) · 920 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
42
43
44
45
46
47
48
49
50
51
52
53
/* 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;
box-sizing: border-box;
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;
transition: background 100ms ease;
}
.keyboard-key.active {
background: #777777;
}
.keyboard-close-button {
position: absolute;
top: 0;
right: 0;
padding: 24px 24px;
box-sizing: border-box;
text-align: right;
color: #676767;
line-height: 1;
}