Base: Foundation Utility Classes

Various utility classes used and available as part of the foundation layer.

.gform-ul-reset

A list of items with no list style type, marign, or padding.

    .gform-ul-reset {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

.gform-text-input-reset

A reset for text inputs.

    .gform-text-input-reset {
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        color: currentColor;
        font-family: inherit;
        font-size: inherit;
        outline: none;
        padding: inherit;
        width: auto;
    }