• File: _owl.scss
  • Full Path: /home/chassiw/www/wp-content/themes/buildbench/assets/sass/component/_owl.scss
  • File size: 982 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/* owl preset */

.owl-carousel {
    .owl-item {
        img {
            width: auto;
        }
        .text-center {
            img {
                margin: {
                    left: auto;
                    right: auto;
                }
            }
        }
        opacity: 0;
        visibility: hidden;
        &.active {
            opacity: 1;
            visibility: visible;
        }
    }
}

/* owl navigation */
.owl-nav {
    button {
        > i {
            display: inline-block;
            padding: 0 9px;
            font-size: 36px;
        }
    }
}

/* dot style 2 */
.dot-style2 {
    .owl-dots {
        button {
            &.owl-dot {
                span {
                    background-color: #e7e7e7;
                    border-width: 1px;
                }
                &.active {
                    span {
                        background-color: transparent;
                    }
                }
            }
        }
    }
}