@import 'images';
.wall-card {
    // margin: 10px;
    overflow: hidden;
    border-radius: $general-border-radius;
    position: relative;
    padding-bottom: 50px;
    // height: 300px;
    // @include image-background-cover('/statics/img/nomocas2.png');
    .wall-card-title {
        vertical-align: baseline;
        h2 {
            display: inline-block;
            margin-right: 15px;
        }
        i {
            font-size: 22px;
            position: relative;
            top: -3px;
            margin-right: 10px;
        }
    }
    .wall-card-date {
        font-family: $heading-typo;
        font-weight: 300;
        font-size: 14px;
        margin-bottom: 10px;
        i {
            font-size: 16px;
            position: relative;
            top: 3px;
            margin-right: 10px;
        }
    }
    .wall-card-icon-tools {
        float: right;
        i {
            font-size: 20px;
            margin-left: 15px;
        }
    }
    .wall-card-content {
        padding: 15px;
    }
    .wall-card-footer {
        opacity: 0;
        text-align: right;
        padding: 15px;
        position: absolute;
        bottom: 0;
        height: 50px;
        width: 100%;
    }
    &:hover {
        box-shadow: 0px 0px 8px #aaa;
        .wall-card-footer {
            opacity: 1;
        }
    }
}
