<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.timeline {
    width: 800px;
}

.chromeless .timeline {
    width: 1024px;
}

/* http://www.daveperrett.com/articles/2013/04/07/recreating-the-reeder-two-tone-horizontal-rule-in-pure-css/ */
.timeline hr {
    height: 3px;
    border: 0;
    background-color: #c3c3c3;
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#eaeaea), to(#eaeaea), color-stop(50%, #f6f5f6));
    background-image: -webkit-linear-gradient(left, #eaeaea, #f6f5f6, #eaeaea);
    background-image: -moz-linear-gradient(left, #eaeaea, #f6f5f6, #eaeaea);
    background-image: -ms-linear-gradient(left, #eaeaea, #f6f5f6, #eaeaea);
    background-image: -o-linear-gradient(left, #eaeaea, #f6f5f6, #eaeaea);
}
.timeline hr::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #eaeaea;
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#eaeaea), to(#eaeaea), color-stop(50%, #c3c3c3));
    background-image: -webkit-linear-gradient(left, #eaeaea, #c3c3c3, #eaeaea);
    background-image: -moz-linear-gradient(left, #eaeaea, #c3c3c3, #eaeaea);
    background-image: -ms-linear-gradient(left, #eaeaea, #c3c3c3, #eaeaea);
    background-image: -o-linear-gradient(left, #eaeaea, #c3c3c3, #eaeaea);
}

.timeline .title {
    color: #999;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    position: relative;
}


.timeline .row {
    text-align: center;
    height: 48px;
    line-height: 48px;
    color: #bababa;
    font-size: 12px;
    position: relative;
}

.timeline .row.expanded {
    height: 128px;
    line-height: 128px;
    font-size: 120px;
    color: #dddddd;
    text-shadow: 1px 1px #f9fbfa;
}

.timeline .row.ellipsis {
    line-height: 6px;
    padding-top: 10px;
    height: 38px;
    font-size: 18px;
    font-weight: bold;
}

.timeline .row .thumb {
    position: absolute;
    z-index: 5;
    top: 4px;
    left: 10px;
}

.timeline .row .thumb.large {
    top: 19px;
    /*left: 467px;*/
    left: 355px;
    z-index: 6;
}

.chromeless .timeline .row .thumb.large {
    left: 467px;
}

.timeline .connection-line {
    position: absolute;
    height: 2px;
    width: 300px;
    background: #ff0000;
    z-index: 3;
}

.timeline .connection-line.hover {
    height: 4px;
    margin-top: -1px;
}

.timeline .placeholder {
    height: 600px;
}

.timeline .debug {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0000ff;
    z-index: 50;
}

.timeline .thumb .contributor {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}</pre></body></html>