You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
998 B
70 lines
998 B
.test-set{
|
|
color: lightgray;
|
|
background: #1f2f3b;
|
|
border-radius: 3.6px;
|
|
padding: 8px;
|
|
}
|
|
.header{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.header>text{
|
|
margin-right: 10px;
|
|
}
|
|
.triangle{
|
|
height: 0px;
|
|
width: 0px;
|
|
border-top: solid 4px transparent;
|
|
border-bottom: solid 4px transparent;
|
|
border-left: solid 5px white;
|
|
transition: 1s ease all;
|
|
margin: 2px 6px 2px 4px;
|
|
}
|
|
.rotate{
|
|
transform: rotate(90deg);
|
|
}
|
|
.input{
|
|
padding: 2px 0px;
|
|
color: #cecece;
|
|
font-size: 15px;
|
|
}
|
|
.error{
|
|
color: #FF4736
|
|
}
|
|
.warn{
|
|
color: #ff6800;
|
|
}
|
|
.tip{
|
|
color: #00b0f0;
|
|
}
|
|
.subtitle{
|
|
text-align: center;
|
|
padding: 2.6px;
|
|
font-size: 14px;
|
|
}
|
|
.detail{
|
|
transition: 0.5s;
|
|
max-height: 100vh;
|
|
}
|
|
.hidden{
|
|
max-height: 0px;
|
|
overflow: hidden;
|
|
}
|
|
.detail.hidden{
|
|
transition: none;
|
|
}
|
|
.output-info{
|
|
background: #111c24;
|
|
max-height: 106px;
|
|
min-height: 24px;
|
|
margin: 4px 0;
|
|
border-radius: 2px;
|
|
}
|
|
.output-line{
|
|
white-space: pre;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.different{
|
|
background: #9a6868;
|
|
} |