46 lines
824 B
SCSS
46 lines
824 B
SCSS
|
|
.partnerSlider {
|
||
|
|
position: relative;
|
||
|
|
|
||
|
|
&__inner {
|
||
|
|
}
|
||
|
|
&__item {
|
||
|
|
margin-right: 5px;
|
||
|
|
padding: 30px;
|
||
|
|
border-right: 5px;
|
||
|
|
border: 1px solid #e6e6e6;
|
||
|
|
position: relative;
|
||
|
|
img {
|
||
|
|
width: 90%;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.p1 {
|
||
|
|
cursor: pointer;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 0;
|
||
|
|
@include transformY;
|
||
|
|
width: 30px;
|
||
|
|
height: 40px;
|
||
|
|
background: rgba($color: #000000, $alpha: 0.5);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.n1 {
|
||
|
|
cursor: pointer;
|
||
|
|
position: absolute;
|
||
|
|
z-index: 1;
|
||
|
|
top: 50%;
|
||
|
|
right: 5px;
|
||
|
|
@include transformY;
|
||
|
|
width: 30px;
|
||
|
|
height: 40px;
|
||
|
|
background: rgba($color: #000000, $alpha: 0.5);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
}
|