_botonera-principal.scss
1.47 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
.botonera-principal {
margin: 0;
padding-left: 30px;
padding-top: 30px;
& menuitem {
display: inline-block;
height: 130px;
text-align: center;
width: 180px;
}
& button {
background-image: url('../img/botonera.png');
border-radius: 12px;
border-width: 0;
height: 90px;
position: relative;
width: 90px;
}
& span {
left: 0;
position: absolute;
text-align: center;
top: 90px;
width: 100%;
font-size: 12px;
color: #777777;
}
&-abrir-turno {
& button {
background-position: 0 0;
&:hover {
background-position: 0 -90px;
}
}
}
&-cerrar-turno {
& button {
background-position: -90px 0;
&:hover {
background-position: -90px -90px;
}
}
}
&-caja {
& button {
background-position: -180px 0;
&:hover {
background-position: -180px -90px;
}
}
}
&-facturador {
& button {
background-position: -270px 0px;
&:hover {
background-position: -270px -90px;
}
}
}
&-nota-pedido {
& button {
background-position: -270px 0px;
&:hover {
background-position: -270px -90px;
}
}
}
}