# wp-ultimate-post-grid/1.7.2/css/layout_base_forced.scss

WP Ultimate Post Grid, version 1.7.2. 147 lines.

- Page: https://pluginprobe.com/plugins/wp-ultimate-post-grid/1.7.2/code/css/layout_base_forced.scss
- Raw: https://pluginprobe.com/plugins/wp-ultimate-post-grid/1.7.2/raw/css/layout_base_forced.scss
- Modified: 2015-09-29T13:38:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-ultimate-post-grid/1.7.2/code/css/layout_base_forced.scss#L10-L20`.

```scss
.wpupg-clear {
    float: none;
    clear: both;
}

.wpupg-meta {
    display: none;
}

html body.rtl .wpupg-container {
  text-align: right;
}

html body .wpupg-container {
    position: relative;
    float: left;
    text-align: left; // Not !important to support RTL languages
    font-size: 14px !important;

    span {
        display: inline-block !important;
    }

    * {
        border: 0 !important;

        -webkit-margin: 0 !important;
        -moz-margin: 0 !important;
        margin: 0 !important;

        -webkit-padding: 0 !important;
        -moz-padding: 0 !important;
        padding: 0 !important;

        background: none !important;

        -webkit-border-radius: 0px !important;
        -moz-border-radius:    0px !important;
        border-radius:         0px !important;

        -webkit-box-shadow: none !important;
        -moz-box-shadow:    none !important;
        box-shadow:         none !important;

        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
        box-sizing: border-box !important;

        color: inherit !important;
        font-size: inherit !important;
        line-height: 1.4 !important;
        font-weight: normal !important;
    }

    b, strong {
        font-weight: bold !important;
    }

    hr {
        background-color: #ccc !important;
    }

    // Reset CSS as best as possible (based on normalize.css)
    .wpupg-paragraph {
        h1 {
            font-size: 2em !important;
            margin: 0.67em 0 !important;
        }

        h2 {
            font-size: 1.5em !important;
            margin: 0.83em 0 !important;
        }

        h3 {
            font-size: 1.17em !important;
            margin: 1em 0 !important;
        }

        h4 {
            font-size: 1em !important;
            margin: 1.33em 0 !important;
        }

        h5 {
            font-size: 0.83em !important;
            margin: 1.67em 0 !important;
        }

        h6 {
            font-size: 0.75em !important;
            margin: 2.33em 0 !important;
        }

        p, pre {
            margin: 1em 0 !important;
        }

        code, kbd, pre, samp {
            font-family: monospace, serif !important;
            _font-family: 'courier new', monospace !important;
            font-size: 1em !important;
        }

        blockquote {
            margin: 1em 40px !important;
        }

        b, strong {
            font-weight: bold !important;
        }

        dl, menu, ol, ul {
            margin: 1em 0 !important;
        }

        dd {
            margin: 0 0 0 40px !important;
        }

        menu, ol, ul {
            padding: 0 0 0 40px !important;
        }

        .aligncenter {
            margin: 0 auto !important;
        }
    }

    table {
        table-layout: auto !important;
        border-collapse: collapse !important;
        width: 100% !important;
    }

    a {
        text-decoration: none !important;

        &:hover {
            text-decoration: underline !important;
        }
    }

    .wpupg-responsive-mobile {
        display: none;
    }
}
```
