-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplateInput.module.less
More file actions
63 lines (63 loc) · 1.11 KB
/
plateInput.module.less
File metadata and controls
63 lines (63 loc) · 1.11 KB
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
.inputG {
display: flex;
justify-content: space-between;
color: #fc0;
font-size: 30px;
.item {
background: #444;
border: 1px solid #636363;
width: 75px;
height: 75px;
line-height: 75px;
text-align: center;
&.active {
border-color: #fc0;
}
.new_power {
width: 100%;
height: 100%;
}
}
}
.keyboard {
position: fixed;
z-index:99999;
left: 0;
bottom: 0;
width: 100%;
box-sizing: border-box;
padding: 20px;
background: #e4e3e3;
.line {
display: flex;
justify-content: space-between;
margin: 0 auto;
margin-bottom: 15px;
&:last-child {
margin-bottom: 0;
}
.item {
display: inline-block;
text-align: center;
width: 55px;
height: 85px;
line-height: 80px;
border-radius: 15px;
background: #fff;
box-shadow: 0 0 6px #ccc;
color: #000;
font-size: 30px;
font-weight: 500;
&:active {
filter: brightness(50%);
}
&.active {
filter: brightness(50%);
}
}
.btn {
background: #fc0;
width: 70px;
}
}
}