DevInSantos/DevInSantos-events

View on GitHub
app/assets/stylesheets/modules/_headline.scss

Summary

Maintainability
Test Coverage
.headline {
    @include border-radius(8px);
    padding: 1em;
    background-color: #542337;
    font-family: "Rockwell";
    color: #FFF;
    text-align: center;
}

.headline span {
    display: block;
}

.headline__one {
    font-weight: bold;
    font-size: 3.7em;
    line-height: 1em;
}

.headline__two {
    font-size: 1.3em;
}

.headline__three {
    font-weight: bold;
    font-size: 1.9em;
}

@media screen and (min-width:600px) {
    .headline {
        display: inline-block;
        margin-left: 3%;
        width: 56%;
    }
}