Commit 92a8efb0b01d8b321eb08205bd9ac8455be59863

Authored by --global
1 parent 47d0f24303
Exists in master

clase para botonera desktop

Showing 1 changed file with 4 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 { 6 .btn {
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 13
14 &:hover{ 14 &:hover{
15 background-color: #d8b07d; 15 background-color: #d8b07d;
16 border-color: #e09125 !important; 16 border-color: #e09125 !important;
17 } 17 }
18 &:focus{ 18 &:focus{
19 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); 19 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
20 } 20 }
21 img{ 21 img{
22 width: 50%; 22 width: 50%;
23 margin: auto 23 margin: auto
24 } 24 }
25 span{ 25 span{
26 font-size: 11px; 26 font-size: 11px;
27 margin-left: -.25rem; 27 margin-left: -.25rem;
28 margin-right: -.25rem; 28 margin-right: -.25rem;
29 } 29 }
30 } 30 }
31 @media(max-width: 992px){ 31 @media(max-width: 992px){
32 .btn{ 32 .btn{
33 font-weight: 700; 33 font-weight: 700;
34 } 34 }
35 } 35 }
36 @media(min-width: 1200px){ 36 @media(min-width: 1200px){
37 .btn{ 37 .btn{
38 min-height: 85px; 38 min-height: 85px;
39 } 39 }
40 .foca-facturador-px{
41 padding-left: 3rem;
42 padding-right: 3rem;
43 }
40 } 44 }
41 45
42 @media(min-width: 992px) and (max-width: 1200px){ 46 @media(min-width: 992px) and (max-width: 1200px){
43 .btn{ 47 .btn{
44 min-height: 73px; 48 min-height: 73px;
45 } 49 }
46 } 50 }
47 51
48 @media(min-width: 768px) and (max-width: 992px){ 52 @media(min-width: 768px) and (max-width: 992px){
49 .btn{ 53 .btn{
50 min-height: 62px; 54 min-height: 62px;
51 } 55 }
52 } 56 }
53 57
54 } 58 }
55 59