_teclado.scss
1.52 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
64
65
66
67
68
69
70
71
72
.keyboard {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin: auto;
width: 60%;
position: absolute;
height: auto;
border: 1px solid rgba(255, 128, 0, .4);
background-color: rgba(0, 0, 0, .3);
bottom: 5px;
z-index: 100000;
table {
width: auto;
height: auto;
margin: 0px auto;
border-spacing: 10px;
border-collapse: separate;
td {
touch-action: none;
}
}
.letter {
background-color: #bdbdbd;
box-shadow: 2px 2px 3px #555555;
padding: 10px;
width: auto;
height: auto;
text-align: center;
font-family: "arial";
cursor: pointer;
color: #000;
font-size: 80%;
&:hover {
background-color: #fafafa;
}
&:active {
background-color: #999;
color: #fff;
}
}
.number {
background-color: #bdbdbd;
box-shadow: 2px 2px 3px #555555;
padding: 10px;
width: auto;
height: auto;
text-align: center;
font-family: "arial";
cursor: pointer;
color: #000;
font-size: 80%;
&:hover {
background-color: #fafafa;
}
&:active {
background-color: #999;
color: #fff;
}
}
.margin {
width: 5%;
height: 5%;
}
}