Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/app/design/frontend/Cnc/default/web/scss/layout/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/app/design/frontend/Cnc/default/web/scss/layout/_breadcrumbs.scss
// ==============================================
// LAYOUT - Breadcrumbs
// ==============================================

// Configuration
$breadcrumbs-margin:            20px 0;
$breadcrumbs-items-space:       8px;
$breadcrumbs-font-size:         1.4rem;
$breadcrumbs-font-color:        $c-blue-dark;
$breadcrumbs-arrow-color:       $c-blue-dark;
$breadcrumbs-arrow-size:        1.4rem;

.breadcrumbs {
    @extend .container;

    @include breakpoint(only-md) {
        display: none;
    }

    .items {
        font-size: 0; // Hack to handle space between items

        @include breakpoint(md){
            margin: $breadcrumbs-margin;
        }

        > li {
            display: inline-flex;
            align-items: center;

            &,
            > a,
            > strong {
                color: $breadcrumbs-font-color;
                font-size: $breadcrumbs-font-size;
                line-height: 1.4;
            }

            a {
                &:hover {
                    text-decoration: underline;
                }
            }

            > strong {
                font-weight: bold;
            }

            & + li {
                padding-left: $breadcrumbs-items-space;

                &::before {
                    content: ">";
                    padding-right: $breadcrumbs-items-space;
                }
            }
        }
    }
}

Spamworldpro Mini