@charset "UTF-8";
html,
body {
    width: 100%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
}

#app {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
#app .container {
    flex: 1;
    overflow: auto;
    padding: 10px;
    min-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#app .container .log-list-wrap {
    background: #eee;
    padding: 5px 15px;
    position: relative;
    flex: 1;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
}
#app .container .log-list-wrap .list-item-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#app .container .log-list-wrap .list-item-title .log-title {
    color: salmon;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 10px;
}
#app .container .log-list-wrap .list-item-title .title-right-btns {
    min-width: 150px;
}
#app .container .el-form-item--small.el-form-item {
    margin-bottom: 0;
}

/* code 样式 */
code {
    font-family: Consolas, Monaco, monospace;
    background-color: #eee;
    cursor: copy;
    padding: 2px 5px;
}
code::after {
    content: "📝";
    margin-left: 5px;
    color: red;
}

.copied::after {
    content: "✔";
}

pre {
    margin: 1em 0;
    position: relative;
}
pre code::before {
    content: "Copy";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    line-height: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}
pre code::after {
    display: none;
}
pre .copied::before {
    content: "Copied!";
}

/* elementui */
.el-collapse-item__header {
    height: auto;
    line-height: 40px;
}

.el-card {
    margin: 15px 0;
}

.el-card__header {
    padding: 5px 10px;
}

.el-dialog {
    margin-top: 5vh !important;
}

.el-form-item {
    margin-bottom: 0;
}

/* table 样式 */
table {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

table td,
table th {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 3px 5px;
}

table th {
    border-bottom: 2px solid #ccc;
    text-align: center;
}

/* blockquote 样式 */
blockquote {
    display: block;
    border-left: 8px solid #d0e5f2;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 1.4;
    font-size: 100%;
    background-color: #f1f1f1;
}

/* ul ol 样式 */
ul,
ol {
    margin: 10px 0 10px 20px;
}

/*# sourceMappingURL=public.css.map */
