-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcj-encrypt.css
100 lines (96 loc) · 2.1 KB
/
cj-encrypt.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
/* 阴影遮罩 */
#cj-keyboard-shade {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(153, 153, 153);
opacity: 0.5;
z-index: 99;
}
/* 键盘 */
#cj-keyboard-wrapper {
width: 100%;
height: auto;
padding-bottom:5px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
-webkit-touch-callout: none;
/*禁止长按文字出现选择框*/
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
background-color:#7C7C7C;
}
img {
pointer-events: none;
/*禁止长按图片弹出选择保存[android端]*/
}
#cj-keyboard-title {
width: 100%;
height: 50px;
text-align: center;
padding: 6px 0;
overflow: hidden;
}
#cj-keyboard-title .cj-block {
width: 15.45%;
height: 50px;
float: left;
background-color: #fff;
margin-left: 1%;
line-height: 50px;
text-align: center;
color: #000;
font-size: 22px;
}
.cj-keyboard-con{
overflow: hidden;
margin-top: 5px;
}
#cj-keyboard-wrapper div button.number {
width: 32%;
height: 55px;
font-size: 22px;
font-weight: 500;
line-height: 1.42;
position: relative;
float: left;
margin-left: 1%;
margin-bottom: 0;
padding: 6px 0px;
cursor: pointer;
-webkit-transition: all;
transition: all;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
-webkit-transition-duration: .2s;
transition-duration: .2s;
text-align: center;
vertical-align: top;
white-space: nowrap;
color: #f3f3f3;
border: 1px solid #3c3c3c;
border-radius: 0px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
background: transparent;
border-radius: 5px;
cursor: pointer;
outline: none;
outline: 0;
}
#cj-keyboard-wrapper div button.number.btn{
background-color: #4572B7;
}