Commit d0eba8884b933e90454e465314b18ada6a257412
1 parent
f50cb363ec
Exists in
master
Arreglo botones
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
src/sass/_botonera-secundaria.scss
1 | .botonera-secundaria { | 1 | .botonera-secundaria { |
2 | height: 78px; | ||
3 | .row { | 2 | .row { |
4 | border-radius: 5px; | 3 | border-radius: 5px; |
5 | overflow: hidden; | 4 | overflow: hidden; |
6 | } | 5 | } |
7 | .btn-xs { | 6 | .btn-xs { |
8 | display: grid; | 7 | display: grid; |
9 | border-width: 3px !important; | 8 | border-width: 3px !important; |
10 | border-radius: .7rem !important; | 9 | border-radius: .7rem !important; |
11 | margin-right: 1px; | 10 | margin-right: 1px; |
12 | width: calc(100% - 1px); | 11 | width: calc(100% - 1px); |
13 | margin-bottom: 1px; | 12 | margin-bottom: 1px; |
14 | |||
15 | &:hover{ | 13 | &:hover{ |
16 | background-color: #cd903550 ; | 14 | background-color: #cd903550 ; |
17 | border-color: #cd9035 !important; | 15 | border-color: #cd9035 !important; |
18 | } | 16 | } |
19 | &:focus{ | 17 | &:focus{ |
20 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); | 18 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); |
21 | } | 19 | } |
22 | img{ | 20 | img{ |
23 | width: 50%; | 21 | width: 40%; |
24 | margin: auto | 22 | margin: auto |
25 | } | 23 | } |
26 | span{ | 24 | span{ |
27 | font-size: 11px; | 25 | font-size: 11px; |
28 | margin-left: -.25rem; | 26 | margin-left: -.25rem; |
29 | margin-right: -.25rem; | 27 | margin-right: -.25rem; |
30 | } | 28 | } |
31 | } | 29 | } |
32 | @media(max-width: 992px){ | 30 | @media(max-width: 992px){ |
33 | .btn-xs{ | 31 | .btn-xs{ |
34 | font-weight: 700; | 32 | font-weight: 700; |
35 | } | 33 | } |
36 | } | 34 | } |
37 | @media(min-width: 1200px){ | 35 | @media(min-width: 1200px){ |
38 | .btn-xs{ | 36 | .btn-xs{ |
39 | height: 85px !important; | 37 | height: 85px !important; |
40 | } | 38 | } |
41 | .foca-facturador-px{ | 39 | .foca-facturador-px{ |
42 | padding-left: 3rem; | 40 | padding-left: 3rem; |
43 | padding-right: 3rem; | 41 | padding-right: 3rem; |
44 | } | 42 | } |
45 | } | 43 | } |
46 | 44 | ||
47 | @media(min-width: 992px) and (max-width: 1200px){ | 45 | @media(min-width: 992px) and (max-width: 1200px){ |
48 | .btn-xs{ | 46 | .btn-xs{ |
49 | height: 73px !important; | 47 | height: 73px !important; |
50 | } | 48 | } |
51 | } | 49 | } |
52 | 50 | ||
53 | @media(min-width: 768px) and (max-width: 992px){ | 51 | @media(min-width: 768px) and (max-width: 992px){ |
54 | .btn-xs{ | 52 | .btn-xs{ |
55 | height: 62px !important; | 53 | height: 62px !important; |
56 | } | 54 | } |
57 | } | 55 | } |
58 | 56 | ||
59 | @media(min-width: 576px) and (max-width: 768px){ | 57 | @media(min-width: 576px) and (max-width: 768px){ |
60 | .btn-xs{ | 58 | .btn-xs{ |
61 | max-height: 51px; | 59 | max-height: 51px; |
62 | } | 60 | } |
63 | } | 61 | } |
64 | 62 | ||
65 | @media(max-width: 576px) { | 63 | @media(max-width: 576px) { |
66 | .btn-xs{ | 64 | .btn-xs{ |
67 | max-height: 13vw; | 65 | max-height: 13vw; |
68 | } | 66 | } |
69 | } | 67 | } |
70 | 68 | ||
71 | } | 69 | } |
72 | 70 |