// dimensions @site-width: 940px; @nav-width: 200px; @site-gutter-width: 18px; @site-main-body-width: @site-width - 2*@site-gutter-width - @nav-width; // colors @site-header-color: #ddf; @nav-color: #dff; @site-body-color: #fff; @site-window-color: #eee; @site-footer-color: #ddf; @site-gutter-color: #fff; header, hgroup, section, footer, aside, nav, article, figure, img { display: block; } body { margin: 0; padding: 0; color: #000; background: @site-window-color; font: 14px "Verdana", sans-serif; } #centerer { position: relative; background: @nav-color; margin: 15px auto; width: @site-width; -moz-box-shadow: 2px 2px 15px #777; -webkit-box-shadow: 2px 2px 15px #777; box-shadow: 2px 2px 13px #777; } header { width: @site-width; height: 100px; background: @site-header-color; } @nav-padding: 10px; nav { float: left; width: @nav-width - 2*@nav-padding; padding: @nav-padding; background: @nav-color; a { display: block; } } #main-body { float: left; width: @site-main-body-width; padding: @site-gutter-width @site-gutter-width @site-gutter-width @site-gutter-width; background: @site-body-color; } footer { clear: both; width: @site-width; height: 50px; background: @site-footer-color; } #wfpl_messages { border: 2px solid red; background: #fbb; padding: 5px; margin: 20px 0px; p { font-size: 120%; padding: 5px; margin: 0px; } hr { height: 1px; } } #admin_links { background: #fdd; padding: 3px; margin-bottom: 15px; } .caption { margin-top: 15px; font-weight: bold; } .field { margin-bottom: 15px; } div.field_notes { font-size: 12px; line-height: 16px; } fieldset { border: 1px dotted black; padding: 0 15px 15px 15px; margin: 15px 0; position: relative; } legend { padding: 0 6px; font-weight: bold; } div.error { border: 2px solid red; padding: 13px; margin: 20px; background: #fdd; } // floating images (from pastable example code on admin_images) span.wfpl_ifl { display: block; float: left; font-size: 10px; text-align: right; background-repeat: no-repeat; background-position: left top; margin: 0 10px 2px 0; } span.wfpl_ifr { display: block; float: right; font-size: 10px; text-align: right; background-repeat: no-repeat; background-position: left top; margin: 0 0 2px 10px; } div.wfpl_ic { margin: 15px auto; font-size: 10px; text-align: right; background-repeat: no-repeat; background-position: center top; } // hack so that vertical margins are only between siblings for the most part td > :first-child, th > :first-child, legend + *, article > :first-child, section > :first-child, nav > :first-child, div > :first-child, .first { margin-top: 0px; } td > :last-child, th > :last-child, fieldset > :last-child, article > :last-child, section > :last-child, nav > :last-child, div > :last-child, .last { margin-bottom: 0px; }