X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=metaform%2Fstyle.css;h=8d313579877f0aa5e50a3682fc585fb5e373908c;hb=d3d84ba460022c2e929dd622f4418af97e73d91e;hp=df624aaaa1f2a79dbe460b1ccb0fc33b7c90a9a8;hpb=b03e19d7003d71ad02e3d2a737c03c9060f3ed6f;p=wfpl.git diff --git a/metaform/style.css b/metaform/style.css index df624aa..8d31357 100644 --- a/metaform/style.css +++ b/metaform/style.css @@ -1,15 +1,24 @@ -td.field, td.right_caption { - text-align: left; - vertical-align: bottom; +.caption { + margin-top: 15px; + font-weight: bold; +} +.field { + margin-bottom: 15px; } -td.caption, td.errorcaption { - text-align: right; - vertical-align: top; +div.field_notes { + font-size: 12px; + line-height: 16px; } -td.caption, td.errorcaption, td.right_caption { +fieldset { + border: 1px dotted black; + padding: 0 15px 15px 15px; + margin: 15px 0; + position: relative; +} +legend { + padding: 0 6px; font-weight: bold; } -td.errorcaption { color: red; } div.error { border: 2px solid red; padding: 13px; @@ -17,7 +26,26 @@ div.error { background: #fdd; } +/* hack so that vertical margins are only between siblings for the most part */ +td > :first-child, +th > :first-child, +legend + :first-child, +article > :first-child, +section > :first-child, +nav > :first-child, +div > :first-child, .first { padding-top: 0px; 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 { + padding-bottom: 0px; + margin-bottom: 0px; +}