.scorestrip {
    display: flex;
    font-size: 12px;
    flex-direction: row;
    margin-bottom: 1em;
    overflow-x: auto;
    flex-wrap: nowrap;
    background-color: white;
}
.scorestrip > div.game {
    padding: 1px;
    border-radius: 6px;
    padding: 1px;
    border-radius: 6px;
    height: 80px;
    margin: 0px 5px 5px 0;
    border: 1px solid #eee;
    box-shadow: 2px 2px 3px #c0c0c0;
}
.scorestrip > div.game > .away, .scorestrip > div.game > .home {
    display: flex;
    width: 80px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.scorestrip > .game span.score {
    display: inline-block;
    color: #eee;
    border-radius: 3px;
    width: 32px;
    height: 20px;
    text-align: center;
    background-color: darkgreen;
}

.scorestrip > .game.post span.score {
    background-color: #888;
}

.scorestrip > .game > .time { text-align: left; }
.scorestrip > .game > .time > span { display: block; }
.scorestrip > div:nth-child(odd) { background-color: #e2e2e8; }
.scorestrip > .game > div:first-child { margin-bottom: 4px; }
.scorestrip > .game.pre .score {
    font-style: italic;
    background: darkgoldenrod;
}
.scorestrip > .game.post .score { font-weight: 800; }
