deiga/new-Roydon

View on GitHub
app/assets/stylesheets/header.css.scss

Summary

Maintainability
Test Coverage
header {
    width: 100%;
    background-color: green;
    color: white;
    position: relative;
    text-align: center;
    height: auto;

    @include rounded-corners-top(1em);

    > section {
        margin: 0 auto;
        margin-bottom: 1em;
        width: 70%;
        border-bottom: 1px solid white;

        > h1 {
            text-transform: uppercase;
            font-size: 7.5em;
            margin-top: 2%;
            padding-top: 1%;
            margin-bottom: -4%;

        }

    > p {
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 0;
            padding-bottom: 0;
        }
    }

}