﻿
h1 {
    margin-bottom: 10px;
}

a:link {
    color: gray;
    text-decoration: none;
}

a.TestCaseTitle:visited {
    color: gray;
    text-decoration: none;
}

article ul {
    list-style-type: none;
    overflow: hidden;
}

article li a {

}

/*****Test Case*****/

.TestCase {
    margin-bottom: 22px;
    border-top: 1px solid lightgray;
}

.TestCaseTitle {
    margin-bottom: 12px;
    font-size: Larger;
}

.CollectionRunResultList {
    margin-top: 24px;
}

li.CollectionRunItem {
    display: inline-block;
    float: left;
    width: 80px;
}


/*****Collection Result*****/

.collectionResult {
    float: left;
    display: inline-block;
    width: 42px;
    padding: 10px;
    margin-right: 50px;
    border-radius:5px;
}

.collectionResult.allPassed {
    color: white;
    background-color: green;
}

    .collectionResult.mostPassed {
        color: black;
        background-color: #d9f2bf;
    }

.collectionResult.mostFailed{
    color: black;
    background-color: #fcc203;
}

.collectionResult.allFailed {
    color: black;
    background-color: red;
}






