You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
.price_option-select{
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
>.sidebar{
|
|
width: 10%;
|
|
min-width: 180px;
|
|
height: 100%;
|
|
min-height: 80vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-right:1px #ccc solid;
|
|
>a{
|
|
margin:6px 0;
|
|
transition: .3s;
|
|
&:hover{
|
|
color:#00b;
|
|
}
|
|
}
|
|
}
|
|
>.content{
|
|
display: grid;
|
|
grid-template-columns: repeat(3,33.3%);
|
|
grid-row-gap: 12px;
|
|
grid-column-gap: 12px;
|
|
>a{
|
|
width: 100%;
|
|
display: block;
|
|
height: 300px;
|
|
position: relative;
|
|
&:hover > div{
|
|
opacity: 1;
|
|
}
|
|
>img{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
>div{
|
|
opacity: 0;
|
|
transition: .3s;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0;
|
|
right:0;
|
|
background-color: rgba($color: #000, $alpha: .7);
|
|
p{
|
|
color:#fff;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.price_option-index{
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
.btn-secondary{
|
|
background-color: #6C757D;
|
|
}
|
|
.text-light{
|
|
color:#fff;
|
|
}
|