51 lines
832 B
SCSS
51 lines
832 B
SCSS
.icon.bp-arrow-right {
|
|
@extend .ion-ios-arrow-right;
|
|
@extend .just-a-hint;
|
|
}
|
|
|
|
.icon.bp-arrow-down {
|
|
@extend .ion-ios-arrow-down;
|
|
@extend .just-a-hint;
|
|
}
|
|
|
|
.icon.bp-arrow-up {
|
|
@extend .ion-ios-arrow-up;
|
|
@extend .just-a-hint;
|
|
}
|
|
|
|
.just-a-hint {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.item.item-big-icon-left {
|
|
padding-left: 74px;
|
|
}
|
|
|
|
|
|
.icon-svg {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
> img {
|
|
background-repeat:no-repeat;
|
|
background-clip: padding-box;
|
|
background-size: contain;
|
|
height: 18px;
|
|
}
|
|
}
|
|
|
|
.big-icon-svg {
|
|
padding: 0 7px;
|
|
> .bg {
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
box-shadow: $hovering-box-shadow;
|
|
background-repeat:no-repeat;
|
|
background-clip: padding-box;
|
|
background-size: 103%;
|
|
&.green{
|
|
background: rgb(1, 209, 162);
|
|
}
|
|
}
|
|
}
|