Commit 652f883f8cd909fa72f2b8dfe708d480aa7c802c

Authored by Eric Fernandez
1 parent d6b53313cf
Exists in master and in 1 other branch develop

espacio después del tag

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/sass/_teclado.scss
1 .keyboard { 1 .keyboard {
2 -webkit-touch-callout: none; 2 -webkit-touch-callout: none;
3 -webkit-user-select: none; 3 -webkit-user-select: none;
4 -khtml-user-select: none; 4 -khtml-user-select: none;
5 -moz-user-select: none; 5 -moz-user-select: none;
6 -ms-user-select: none; 6 -ms-user-select: none;
7 user-select: none; 7 user-select: none;
8 8
9 table { 9 table {
10 border-spacing: 10px; 10 border-spacing: 10px;
11 border-collapse: separate; 11 border-collapse: separate;
12 background-color: #F1F1F1; 12 background-color: #F1F1F1;
13 13
14 td { 14 td {
15 touch-action: none; 15 touch-action: none;
16 } 16 }
17 } 17 }
18 18
19 .letter { 19 .letter {
20 background-color: #bdbdbd; 20 background-color: #bdbdbd;
21 box-shadow: 2px 2px 3px #555555; 21 box-shadow: 2px 2px 3px #555555;
22 width: 47px; 22 width: 47px;
23 height: 50px; 23 height: 50px;
24 text-align: center; 24 text-align: center;
25 font-family: "arial"; 25 font-family: "arial";
26 cursor: pointer; 26 cursor: pointer;
27 color: #000; 27 color: #000;
28 font-size: 22px; 28 font-size: 22px;
29 29
30 &:hover { 30 &:hover {
31 background-color: #fafafa; 31 background-color: #fafafa;
32 } 32 }
33 &:active { 33 &:active {
34 background-color: #999; 34 background-color: #999;
35 color: #fff; 35 color: #fff;
36 } 36 }
37 } 37 }
38 .number { 38 .number {
39 background-color: #bdbdbd; 39 background-color: #bdbdbd;
40 box-shadow: 2px 2px 3px #555555; 40 box-shadow: 2px 2px 3px #555555;
41 width: 47px; 41 width: 47px;
42 height: 35px; 42 height: 35px;
43 text-align: center; 43 text-align: center;
44 font-family: "arial"; 44 font-family: "arial";
45 cursor: pointer; 45 cursor: pointer;
46 color: #000; 46 color: #000;
47 font-size: 22px; 47 font-size: 22px;
48 48
49 &:hover{ 49 &:hover {
50 background-color: #fafafa; 50 background-color: #fafafa;
51 } 51 }
52 &:active { 52 &:active {
53 background-color: #999; 53 background-color: #999;
54 color: #fff; 54 color: #fff;
55 } 55 }
56 } 56 }
57 57
58 .margin { 58 .margin {
59 width: 40px; 59 width: 40px;
60 height: 50px; 60 height: 50px;
61 } 61 }
62 } 62 }
63 63