CSS SNIPPETS

TRANSITION ALL BUTTONS

Will transition changes to all properties on all buttons (including contact forms).
.dmWidget, .dmWidget * { transition: all 0.3s ease; }

Contact Us

NEW BUTTON

REMOVE ROUNDED CORNERS ON FORM INPUTS

Will transition changes to all properties on all buttons (including contact forms).
.dmformsubmit,
div.dmInner textarea,
div.dmInner input[type="tel"],
div.dmInner input[type="email"],
#dm div.dmInner input[type="text"] {
    border-radius: 0px !important;
}

Contact Us