-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss__teclado.css
More file actions
66 lines (60 loc) · 1.18 KB
/
css__teclado.css
File metadata and controls
66 lines (60 loc) · 1.18 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
#container {
/*margin: 100px auto;*/
width: 688px;
color: #000;
}
.keyboard {
margin: 0;
padding: 0;
list-style: none;
display: flex;
}
.letterBlanco {
float: left;
margin: 0 5px 5px 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: #ffffff;
border: 1px solid #f9f9f9;
border-radius: 5px;
-webkit-border-radius: 5px;
}
.letterRojo {
float: left;
margin: 0 5px 5px 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: #9d0c0c;
border: 1px solid #e98585;
border-radius: 5px;
-webkit-border-radius: 5px;
cursor: no-drop;
}
.letterVerde {
float: left;
margin: 0 5px 5px 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: #0a831e;
border: 1px solid #61e96c;
border-radius: 5px;
-webkit-border-radius: 5px;
cursor: no-drop;
}
.letterBlanco:hover {
position: relative;
top: 1px;
left: 1px;
border-color: #e5e5e5;
cursor: pointer;
}
#_letter_a,
#_letter_z {
clear: left;
}