-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.keypad.css
115 lines (112 loc) · 2.07 KB
/
jquery.keypad.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* Main style sheet for jQuery Keypad v2.0.0. */
button.keypad-trigger {
width: 25px;
padding: 0px;
}
img.keypad-trigger {
margin: 2px;
vertical-align: middle;
}
.keypad-popup, .keypad-inline, .keypad-key, .keypad-special {
font-family: Arial,Helvetica,sans-serif;
font-weight: bold;
font-size: 25px;
}
.keypad-popup {
display: none;
z-index: 10;
margin:0;
padding-left:10px;
padding-top:10px;
padding-bottom:10px;
padding-right:0px;
background-color: #6DB8D6;
color: #000;
border: 2px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-keyentry {
display: none;
}
.keypad-inline {
background-color: #fff;
border: 1px solid #888;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.25em;
}
.keypad-disabled {
position: absolute;
z-index: 100;
background-color: white;
opacity: 0.5;
filter: alpha(opacity=50);
}
.keypad-rtl {
direction: rtl;
}
.keypad-prompt {
clear: both;
text-align: center;
}
.keypad-prompt.ui-widget-header {
margin: 0.125em;
}
.keypad-row {
width: 100%;
}
.keypad-space {
display: inline-block;
margin: 0.125em;
width: 6.3em;
}
.keypad-half-space {
display: inline-block;
margin: 0.125em 0.0625em;
width: 1em;
}
.keypad-key, .keypad-special {
border: 2px ridge #888;
margin: 0.125em;
padding: 0em;
height: 60px;
background-color: #ffffff;/*#f4f4f4*/
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
border-radius: 0.35em;
text-align: center;
cursor: pointer;
}
.keypad-key[disabled] {
border: 0.125em outset;
}
.keypad-key-down {
}
.keypad-key{margin-right:10px; width: 150px;}
.keypad-special {
width: 150px;
}
.keypad-spacebar {
width: 13.25em;
}
.keypad-tab {
width: 3em;
}
.keypad-clear, .keypad-back, .keypad-close, .keypad-shift {
color: black;
font-weight: bold;
}
.keypad-clear {
background-color: #FAF600;
}
.keypad-back {
background-color: #F72900
}
.keypad-close {
background-color: #0a0;
}
.keypad-shift {
background-color: #0aa;
}