_botonera-secundaria.scss
1.08 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
.botonera-secundaria {
.row {
border-radius: 5px;
overflow: hidden;
}
.btn {
display: grid;
border-width: 3px !important;
border-radius: .7rem !important;
margin-right: 1px;
width: calc(100% - 1px);
margin-bottom: 1px;
&:hover{
background-color: #d8b07d;
border-color: #e09125 !important;
}
&:focus{
box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
}
img{
width: 50%;
margin: auto
}
span{
font-size: 11px;
margin-left: -.25rem;
margin-right: -.25rem;
}
}
@media(max-width: 992px){
.btn{
font-weight: 700;
}
}
@media(min-width: 1200px){
.btn{
min-height: 85px;
}
}
@media(min-width: 992px) and (max-width: 1200px){
.btn{
min-height: 73px;
}
}
@media(min-width: 768px) and (max-width: 992px){
.btn{
min-height: 62px;
}
}
}