-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeys.css
44 lines (41 loc) · 925 Bytes
/
keys.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
div.keyboard{
position:absolute;
top:0px;
height:0px;
width:100%;
z-index: 9999;
overflow-x:scroll;
-webkit-overflow-scrolling: touch;
-webkit-transition: height 0.25s ease-in-out;
-moz-transition: height 0.25s ease-in-out;
-o-transition: height 0.25s ease-in-out;
transition: height 0.25s ease-in-out;
}
div.keyboard.visible{
height:60px;
}
div.keyboard .key {
top: 18px;
position: relative;
opacity: 0.97;
background: #ffffff;
padding: 18px 27px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #000000;
font-size: 13px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
cursor:pointer;
white-space: nowrap;
}
/*screws up iOS
div#keyboard .key:hover {
background: #1fa5ff;
color: #ffffff;
}*/
div.keyboard .key:active {
background: #1f1dff;
}