Blog Date

by Chris Buttery

HTML

<div class="date">
    <span class="day">30</span>
    <span class="month">12</span>
</div>

SCSS

body {
    background: #38677c;
    font-family: Sans-Serif;
    padding: 60px;
}

.date {
    width: 40px;
    height: 40px;
    padding: 20px;
    border: 1px dashed #fff;
    position: relative;
    overflow: hidden;
    
    &:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform:rotate(-45deg);
    }
        
    span {
        position: absolute;
        font-weight: 400;
        font-size: 26px;
        text-transform: uppercase;
    }
    
    .day {
        color: #ffd671;
        top: 10px;
        left: 10px;
    }
        
    .month {
        color: #fff;
        bottom: 10px;
        right:10px;
    }
}