﻿@import url('https://fonts.googleapis.com/css?family=Trirong');
@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body {
    font-family: 'Roboto', 'Trirong', sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    color: #373a3c;
    background: #ffffff;
    padding-top: 2.5rem;
}

/* navbar */
.navbar-brand {
    font-size: 1.15rem;
    font-weight: 600;
}

.main-page {
    min-height: calc(100vh - 135px);
    padding-bottom: 25px;
}

.page-title {
    font-weight: 600;
}


.list-api {
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.api-title {
    padding-top: 20px;
}

.api-name {
    font-size: 13px;
    font-weight: 500;
    color: #616161;
}

.box-endpoint {
    padding: 5px 0;
    /*border-bottom: 1px dashed #e85c6a;*/
}

.endpoint {
    width: 100%;
    display: flex;
    line-height: 30px;
    letter-spacing: 0;
    border-radius: 3px;
    cursor: pointer;
}

.endpoint-method {
    font-size: 12px;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    background: rgba(255,255,255,0.10);
}

    .endpoint-method.get {
        color: #2196F3;
    }

    .endpoint-method.post {
        color: #4CAF50;
    }

    .endpoint-method.put {
        color: #FFC107;
    }

    .endpoint-method.delete {
        color: #F44336;
    }

    .endpoint-method.send {
        color: #f97330;
    }

    .endpoint-method.receive {
        color: #28c3dc;
    }

.endpoint-url {
    padding: 5px;
    flex-grow: 1;
    word-wrap: break-word;
    font-size: 12px;
    color: #e6e6e6;
    line-height: 20px;
}

.fill-dark {
    color: #ffffff;
    background-color: #404040;
}

.footer {
    background: #ffffff;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eaeaea;
}


.card.card-body {
    background: #484848;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: #d6d6d6;
    font-size: 12px;
}


code, pre {
    background: rgba(0,0,0,0.025);
    font-size: 12px;
    line-height: 20px;
    padding: 3px;
    border-radius: 3px;
    white-space: pre-line;
}

.hljs {
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    background: #353535;
    color: #e6e1dc;
}

.hljs-symbol, .hljs-bullet, .hljs-built_in, .hljs-builtin-name, .hljs-attr, .hljs-link {
    color: #6d9cbe;
}

.hljs-string, .hljs-number, .hljs-regexp, .hljs-variable, .hljs-template-variable {
    color: #a5c261;
}
.hljs-comment {
    color: #2e8a44;
}

.lv-1 {
    margin-left: 20px;
}
.lv-2 {
    margin-left: 40px;
}
.lv-3 {
    margin-left: 60px;
}
.lv-4 {
    margin-left: 80px;
}
.lv-5 {
    margin-left: 100px;
}