﻿html{
    font-family:'Lucida Sans Unicode', 'Lucida Sans', Arial, sans-serif;
    font-size:14px;
}
.tile{
    width:50px;
    height:35px;
    background-color:#92cafb;
    text-align:center;
    padding-top:15px;
    position:relative;
    margin: 0 0 25px 0;

    &:not(:last-child):after{
        content: "|";
        width: 2px;
        margin-left: 25px;
        color: #92cafb;
        position: absolute;
        bottom: -25px;
        left: 0;
        height: 25px;
        background-color: #92cafb;
    }
    &.current{
        background-color:gold;
    }
}
