﻿
/*body {*/
.body-timeline {
    background: linear-gradient(55deg,#4E75B9 30%,#5CBF98 90%);
    display: flex;
    align-items: center;
    justify-content: center;
/*    min-height: 100vh;*/
/*    width: 100vw;*/
    margin: 0;
/*    padding: 12vh 100px;*/
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-weight: 300;
    color: #333;
    box-sizing: border-box;
    /*    * {
        box-sizing: border-box;
    }*/
}

.timeline {
    width: 100%;
/*    max-width: 800px;*/
background-color: bisque;
/*    background: #fff;*/
    padding: 100px 50px;
    position: relative;
/*    box-shadow: $container-shadow;
    &:before {
        content: '';
        position: absolute;
        top: 0px;
        left: calc(33% + 15px);
        //$gutter/2 bottom: 0px;
        width: $border-width;
        background: #ddd;
    }

    &:after {
        content: "";
        display: table;
        clear: both;
    }*/
}

.entry {
    clear: both;
    text-align: left;
    position: relative;
    .title {
               background-color: aqua;
        margin-bottom: .5em;
        float: left;
        width: 10%;
/*        width: 33%;*/
/*padding-right: 30px;*/
font-size: 20px;
font-weight: bold;
/*        padding-right: $gutter;*/
text-align: left;
/*        text-align: right;*/
        position: relative;
/*        &:before {
            content: '';
            position: absolute;
            width: $dot-diameter;
            height: $dot-diameter;
            border: $border-width solid salmon;
            background-color: #fff;
            border-radius: 100%;
            top: 15%;
            right: -$dot-diameter;
            z-index: 99;
        }*/
/*        h3 {
            margin: 0;
            font-size: 120%;
        }*/
        p {
            margin: 0;
            font-size: 2.4rem;
            font-weight: bold;
/*            font-size: 100%;*/
        }
    }
    .body {
        background-color: yellow;
        margin: 0 0 3em;
        float: right;
        width: 66%;
/*padding-left: 30px;*/
/*        padding-left: $gutter;*/
        p {
              font-size: 1.2rem;
            line-height: 1.2em;
            &:first-child {
                margin-top: 0;
                font-weight: 400;
            }
        }
        /*ul {*/
/*            color: #aaa;*/
            /*padding-left: 0;*/
/*            list-style-type: none;*/
            /*li: before {
                content: "–";
                margin-right: .5em;
            }
        }*/
    }
}
