client.css 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

* {
    font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
}

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
.header {
    background-color: #293c55;
    box-shadow: 0 0  20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.header h1 {
    color: #fff;
    line-height: 50px;
    margin: 0;
    font-weight: 200;
    font-size: 20px;
}

#logo>* {
    display: inline-block;
    vertical-align: middle;
}

#logo img {
    height: 30px;
    margin-right: 20px;
}

.nav-toolbar {
    padding: 10px 10px;
    background: #162436;
    box-shadow: inset 0 0 5px black;
}
.nav-toolbar .controls {
    margin-top: 10px;
}

.test-list {
    overflow-x: hidden;
    background: #293c55;
    margin: 0;
    padding: 0;
}
.test-list li {
    list-style: none;
    padding-left: 10px;
    cursor: pointer;
    color: #f3f3f3;
}
.test-list li a.menu-link {
    display: inline-block;
61
    text-decoration: none;
62 63 64 65 66
    font-size: 14px;
    line-height: 40px;
    color: #f3f3f3;
    margin-left: 3px;
    cursor: pointer;
67 68
}

69 70 71 72 73 74 75 76 77
.test-list li.active {
    background: #e43c59;
}
.test-list li:hover {
    background: #162436;
}
.test-list li>* {
    vertical-align: middle;
    display: inline-block
78 79
}

80 81 82 83 84 85 86 87 88 89
.test-list .el-progress__text {
    font-size: 12px!important;
}

.test-result {
    margin-top: 80px;
    padding: 0 20px;
}

.test-result img {
90 91
    /* height: 200px; */
    width: 100%;
92 93 94 95 96 97 98
}
.test-result h4 {
    font-size: 30px;
    font-weight: 200;
    margin-left: -20px;
}

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
.test-errors, .test-logs {
    margin-top: 20px;
    padding: 0 50px;
}

.test-logs .log-item {
    margin: 10px 20px;
    color: #909399;
}

.test-errors .error-item {
    margin: 10px 20px;
    color: #f56c6c
}

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

::-webkit-scrollbar {
    height:8px;
    width:8px;
    transition:all 0.3s ease-in-out;
    border-radius:2px;
    background: transparent;
}

::-webkit-scrollbar-button {
    display:none;
}

::-webkit-scrollbar-thumb {
    width:8px;
    min-height:15px;
    background:rgba(50, 50, 50, 0.6) !important;
    transition:all 0.3s ease-in-out;border-radius:2px;
}

::-webkit-scrollbar-thumb:hover {
    background:rgba(0, 0, 0, 0.5) !important;
136
}