Commit 6a56e716af3ca708e6fb50ce5ba011d736406e64
1 parent
678f931b00
Exists in
master
and in
1 other branch
Agregada nueva clase para la botonera de tarjetas.
Showing
1 changed file
with
15 additions
and
0 deletions
Show diff stats
src/sass/_botonera-secundaria.scss
| 1 | .botonera-secundaria { | 1 | .botonera-secundaria { |
| 2 | .row { | 2 | .row { |
| 3 | border-radius: 5px; | 3 | border-radius: 5px; |
| 4 | overflow: hidden; | 4 | overflow: hidden; |
| 5 | } | 5 | } |
| 6 | .btn-xs { | 6 | .btn-xs { |
| 7 | display: grid; | 7 | display: grid; |
| 8 | border-width: 3px !important; | 8 | border-width: 3px !important; |
| 9 | border-radius: .7rem !important; | 9 | border-radius: .7rem !important; |
| 10 | margin-right: 1px; | 10 | margin-right: 1px; |
| 11 | width: calc(100% - 1px); | 11 | width: calc(100% - 1px); |
| 12 | margin-bottom: 1px; | 12 | margin-bottom: 1px; |
| 13 | &:hover{ | 13 | &:hover{ |
| 14 | background-color: #cd903550 ; | 14 | background-color: #cd903550 ; |
| 15 | border-color: #cd9035 !important; | 15 | border-color: #cd9035 !important; |
| 16 | } | 16 | } |
| 17 | &:focus{ | 17 | &:focus{ |
| 18 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); | 18 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); |
| 19 | } | 19 | } |
| 20 | img{ | 20 | img{ |
| 21 | width: 40%; | 21 | width: 40%; |
| 22 | margin: auto | 22 | margin: auto |
| 23 | } | 23 | } |
| 24 | span{ | 24 | span{ |
| 25 | font-size: 11px; | 25 | font-size: 11px; |
| 26 | margin-left: -.25rem; | 26 | margin-left: -.25rem; |
| 27 | margin-right: -.25rem; | 27 | margin-right: -.25rem; |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | .btn-tarjeta { | ||
| 31 | border-width: 3px !important; | ||
| 32 | border-radius: .7rem !important; | ||
| 33 | &:hover{ | ||
| 34 | background-color: #cd903550 ; | ||
| 35 | border-color: #cd9035 !important; | ||
| 36 | } | ||
| 37 | &:focus{ | ||
| 38 | box-shadow: none; | ||
| 39 | } | ||
| 40 | img{ | ||
| 41 | width: 5em; | ||
| 42 | margin: auto | ||
| 43 | } | ||
| 44 | } | ||
| 30 | @media(max-width: 992px){ | 45 | @media(max-width: 992px){ |
| 31 | .btn-xs{ | 46 | .btn-xs{ |
| 32 | font-weight: 700; | 47 | font-weight: 700; |
| 33 | } | 48 | } |
| 34 | } | 49 | } |
| 35 | @media(min-width: 1200px){ | 50 | @media(min-width: 1200px){ |
| 36 | .btn-xs{ | 51 | .btn-xs{ |
| 37 | height: 85px !important; | 52 | height: 85px !important; |
| 38 | } | 53 | } |
| 39 | .foca-facturador-px{ | 54 | .foca-facturador-px{ |
| 40 | padding-left: 3rem; | 55 | padding-left: 3rem; |
| 41 | padding-right: 3rem; | 56 | padding-right: 3rem; |
| 42 | } | 57 | } |
| 43 | } | 58 | } |
| 44 | 59 | ||
| 45 | @media(min-width: 992px) and (max-width: 1200px){ | 60 | @media(min-width: 992px) and (max-width: 1200px){ |
| 46 | .btn-xs{ | 61 | .btn-xs{ |
| 47 | height: 73px !important; | 62 | height: 73px !important; |
| 48 | } | 63 | } |
| 49 | } | 64 | } |
| 50 | 65 | ||
| 51 | @media(min-width: 768px) and (max-width: 992px){ | 66 | @media(min-width: 768px) and (max-width: 992px){ |
| 52 | .btn-xs{ | 67 | .btn-xs{ |
| 53 | height: 62px !important; | 68 | height: 62px !important; |
| 54 | } | 69 | } |
| 55 | } | 70 | } |
| 56 | 71 | ||
| 57 | @media(min-width: 576px) and (max-width: 768px){ | 72 | @media(min-width: 576px) and (max-width: 768px){ |
| 58 | .btn-xs{ | 73 | .btn-xs{ |
| 59 | max-height: 51px; | 74 | max-height: 51px; |
| 60 | } | 75 | } |
| 61 | } | 76 | } |
| 62 | 77 | ||
| 63 | @media(max-width: 576px) { | 78 | @media(max-width: 576px) { |
| 64 | .btn-xs{ | 79 | .btn-xs{ |
| 65 | max-height: 22vw; | 80 | max-height: 22vw; |
| 66 | } | 81 | } |
| 67 | } | 82 | } |
| 68 | 83 | ||
| 69 | } | 84 | } |
| 70 | .foca-overflow-hidden{ | 85 | .foca-overflow-hidden{ |
| 71 | overflow: hidden; | 86 | overflow: hidden; |
| 72 | text-overflow: ellipsis; | 87 | text-overflow: ellipsis; |
| 73 | white-space: nowrap; | 88 | white-space: nowrap; |
| 74 | } | 89 | } |
| 75 | 90 | ||
| 76 | .foca-boton-facturador-right { | 91 | .foca-boton-facturador-right { |
| 77 | right: 5; | 92 | right: 5; |
| 78 | } | 93 | } |
| 79 | 94 |