@import './config';
@import './nprogress';
@import './code';
@import './custom-blocks';
@import './arrow';

html,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: -apple-system BlinkMacSystemFont, 'Segoe UI' Roboto Oxygen Ubuntu Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue' sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.875rem;
    color: $textColor;
}

.page {
    padding-left: $sidebarWidth;
}

.navbar {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: $navbarHeight;
    background-color: #fff;
    box-sizing: border-box;
    border-bottom: 1px solid $borderColor;
}

.sidebar-mask {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

.sidebar {
    font-size: 15px;
    background-color: #fff;
    width: $sidebarWidth;
    position: fixed;
    z-index: 10;
    margin: 0;
    top: $navbarHeight;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    border-right: 1px solid $borderColor;
    overflow-y: auto;
}

.content:not(.custom) { 
    margin: 0 auto;
    // padding: 2rem 2.5rem;
  
    a:hover {
        text-decoration: underline;
    }
    p.demo {
        padding: 1rem 1.5rem;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    img {
        max-width: 100%;
    }
}

.content.custom {
    padding: 0;
    margin: 0;
}

a {
    font-weight: 500;
    color: $accentColor;
    text-decoration: none;
}

p a code {
    font-weight: 400;
    color: $accentColor;
}

kbd {
    background: #eee;
    border: solid 0.15rem #ddd;
    border-bottom: solid 0.25rem #ddd;
    border-radius: 0.15rem;
    padding: 0 0.15em;
}

blockquote {
    color: #999;
    border-left: 0.25rem solid #dfe2e5;
    margin: 10px 0 10px;
    padding-left: 1rem;
}

ul,
ol {
    padding-left: 1.2em;
}

strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    .content:not(.custom) > & {
        margin-top: 0.5rem - $navbarHeight;
        padding-top: $navbarHeight + 0.5rem;
        margin-bottom: 0;
        &:first-child {
            margin-top: -1.5rem;
            margin-bottom: 1rem;
            + p,
            + pre,
            + .custom-block {
                margin-top: 2rem;
            }
        }
    }
    &:hover .header-anchor {
        opacity: 1;
    }
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.45rem;
    padding-bottom: 0.3rem;
}

h3 {
    font-size: 1.15rem;
}

a.header-anchor {
    font-size: 0.85em;
    float: $navbarHeight;
    margin-left: -0.87em;
    margin-top: 0.125em;
    opacity: 0;
    &:hover {
        text-decoration: none;
    }
}

code,
kbd {
    font-family: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace
}

p,
ul,
ol {
    line-height: 1.7;
    margin:18px 0;
}

hr {
    border: 0;
    border-top: 1px solid $borderColor;
}

table {
    border-collapse: collapse;
    margin: 1rem 0;
}

tr {
    border-top: 1px solid #dfe2e5;
    &:nth-child(2n) {
        background-color: #f6f8fa;
    }
}

th,
td {
    border: 1px solid #dfe2e5;
    padding: 0.6em 1em;
}

.custom-layout {
    padding-top: $navbarHeight;
}

.theme-container {
    &.sidebar-open {
        .sidebar-mask {
            display: block;
        }
    }
    &.no-navbar {
        .content:not(.custom) {
            h1,
            h2,
            h3,
            h4,
            h5,
            h6 { 
                margin-top: 1.5rem;
                padding-top: 0;
            }
        }
    }
}

@media (min-width: $MQMobile + 1px) {
    .theme-container.no-sidebar {
        .sidebar {
            display: none;
        }
        .page {
            padding-left: 0;
        }
    }
}

@import './mobile.scss';
