mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-13 08:59:54 +08:00
62 lines
744 B
CSS
62 lines
744 B
CSS
@charset "UTF-8";
|
|
/* CSS Document */
|
|
|
|
#runner {
|
|
position: absolute;
|
|
top:5px;
|
|
left:10px;
|
|
right:10px;
|
|
height: 200px;
|
|
}
|
|
|
|
#testView {
|
|
position: absolute;
|
|
bottom:10px;
|
|
top:210px;
|
|
left:10px;
|
|
right:10px;
|
|
}
|
|
|
|
#testView iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.console {
|
|
display: block;
|
|
overflow: scroll;
|
|
height: 200px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.collapsed .log {
|
|
display: none;
|
|
}
|
|
|
|
.run, .info, .error {
|
|
display: block;
|
|
padding: 0 1em;
|
|
font-family: monospace;
|
|
white-space: pre;
|
|
}
|
|
|
|
.run {
|
|
background-color: lightgrey;
|
|
padding: 0 .2em;
|
|
}
|
|
|
|
.run.pass {
|
|
background-color: lightgreen;
|
|
}
|
|
|
|
.run.fail {
|
|
background-color: lightred;
|
|
}
|
|
|
|
.name, .time, .state {
|
|
padding-right: 2em;
|
|
}
|
|
|
|
error {
|
|
color: red;
|
|
} |