How to add a logo to the bottom of CustomerID pages

The following CSS will add a smaller version of the page logo centered on the bottom of every page. A horizontal line will appear above the logo. Add this code to any custom CSS file used.

customerid/application/custom/style.css
body > .content::after {
    background: #fff url("/eidm2/res/logo") no-repeat scroll 50% 50%;
    border-top: 1px solid grey;
    content: "";
    float: left;
    height: 130px;
    margin: 0;
    max-width: 1280px;
    padding: 0;
    width: 100%;
}

Adjust any media queries respectively for desired behaviour for responsive design.