it
Version:
A testing framework for node
137 lines (112 loc) • 2.13 kB
CSS
body {
background-color: #f4f4f4;
padding: 0;
margin: 5px;
overflow-y: scroll;
}
#it a {
text-decoration: none;
color: inherit;
}
#it a:hover {
text-decoration: underline;
color: inherit;
}
#it {
color: gray;
font-size: 10px;
font-style: normal;
font-family: menlo;
line-height: 14px;
width: 100%;
min-height: 100%;
overflow: visible;
}
#it > .header {
background-color: #323232;
color: white;
padding: 10px;
}
#it > .header > h1 {
vertical-align: middle;
display: inline-block;
}
#it > .header > .summary {
float: right;
display: inline-block;
vertical-align: middle;
padding-top: 15px;
}
#it > .header > .summary .pending {
color: #03C5FF;
}
#it > .header > .summary .passed {
color: #2cca08;
}
#it > .header > .summary .failed {
color: #f90008;
}
#it > .progress {
font-size: 14px;
background: white;
margin: 0;
padding-top: 10px;
padding-bottom: 10px;
}
#it > .actions {
font-size: 14px;
}
#it > .actions > pre {
width: 98%;
margin-left: auto ;
margin-right: auto ;
overflow: auto;
background-color: white;
font-family: monospace;
padding: 7px;
font-size: 12px;
}
#it > .actions > .passed {
color: #2cca08;
}
#it > .actions > .passed::before {
content: "√";
}
#it > .actions > .failed {
color: #f90008;
font-weight: bold;
margin-left: -1px;
}
#it > .actions > .failed::before {
content: "✗";
}
#it > .actions > .pending {
color: #03C5FF;
}
#it > .actions > .pending::before {
content: "λ";
}
#it > .progress > li {
font-size: 16px;
display: inline-block;
vertical-align: middle;
width: 10px;
}
#it > .progress > li.passed::before {
color: #2cca08;
content: "•";
}
#it > .progress > li.not-run::before {
color: #676767;
content: "•";
}
#it > .progress > li.pending::before {
color: #03C5FF;
content: "λ";
}
#it > .progress > li.failed::before {
color: #f90008;
content: "✗";
font-weight: bold;
margin-left: -1px;
}