﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

.container {
    max-width: 100% !important;
}

.navbar-brand {
    position: relative;
    transition: all 280ms ease-in-out;
}
.navbar-brand:not(:last-child) {
    margin-right: 15px;
}
.navbar-brand:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    background: #9E9E9E;
    height: 50%;
    top: 25%;
    right: 0;
}

ul li:hover {
    background-color: #eee;
    transition: all 0.3s;
    cursor: pointer;
}

ul li {
    position: relative;
    padding-left: 40px !important;
}

    ul li i {
        left: 10px;
        top: 7px;
        position: absolute;
    }

.logcontent {
    font-family: monospace;
}
.logcontent li {
    padding: 6px 24px !important;
}
.logcontent li:before {
    content: attr(data-line);
    position: absolute;
    top: 0;
    left: 6px;
    padding-top: 6px;
    padding-right: 8px;
    width: 48px;
    text-align: right;
    font-weight: bold;
    height: 100%;
    border-right: 1px solid #ddd;
    font-size: 12px;
}
.logcontent li.success {
    background: #E8F5E9;
}
.logcontent li.error {
    background: #FFEBEE;
}
.logcontent li span {
    display: block;
    word-break: break-all;
    margin-left: 38px;
    font-size: 12px;
}

i[data-copy] {
    right: 5px;
    left: auto;
    color: #9f9f9f;
    transition: all 0.3s;
}
i[data-copy].success {
    color: #4CAF50;
}
i[data-copy].error {
    color: #F44336;
}

.logcontent li i[data-copy]:active {
    color: #000;
}

i[data-download] {
    position: absolute;
    right: 34px;
    left: auto;
    color: #2196F3;
    cursor: pointer;
}
i[data-delete] {
    position: absolute;
    right: 5px;
    left: auto;
    color: #F44336;
    cursor: pointer;
}

h2, h4 {
    margin: 20px 0;
}
h4 i.floating {
    position: absolute;
    right: 24px;
}

[data-loading] {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

[hidden] {
    display: none;
}
