From 357fd3ab4162311ee5a4c8436fdc581917e1861b Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Mon, 29 Oct 2007 13:55:54 +0000 Subject: [PATCH] new css --- .../src/main/webapp/css/booking.css | 168 ++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 spring-webflow-samples/booking-mvc/src/main/webapp/css/booking.css diff --git a/spring-webflow-samples/booking-mvc/src/main/webapp/css/booking.css b/spring-webflow-samples/booking-mvc/src/main/webapp/css/booking.css new file mode 100644 index 00000000..7c9359d8 --- /dev/null +++ b/spring-webflow-samples/booking-mvc/src/main/webapp/css/booking.css @@ -0,0 +1,168 @@ + a, a:link a:active { + color: black; + background-color: white; + text-decoration: underline; + } + + a:visited { + color: black; + background-color: transparent; + } + + a:hover { + color: white; + background-color: #65a242; + text-decoration: none; + } + + body.spring { + background-color: #9cac7c; + } + + #header.spring { + margin: 0 0 1em 0; + padding: 0px 0px; + background-color : #414f23; + } + + #branding.spring { + float: none; + width: 100%; + + margin: 10px 0 0 0; + padding: 0 0 0 0; + + text-align: none; + } + + #welcome { + padding: 10px 10px; + } + + #welcome div.left { + float: left; + } + + #welcome div.right { + float: right; + } + + #content.spring { + width: 740px; + background: #fff url(../images/bg.gif) 0 0 repeat; + margin-bottom: 0px; + } + + #content .section { + width: 505px; + float: left; + } + + #content.spring input[type="submit"], input[type="button"] { + font-weight: bold; + color: #fff; + height: 20px; + background: #fff url(../images/btn.bg.gif) 0 0 repeat-x; + border-style: none; + vertical-align: middle; + } + + .errors { + font-weight: bold; + text-align: center; + color: #600; + } + + .errors ul { + list-style: none; + } + + #content .field { + float:left; + } + + #content .field .label { + float: left; + padding-top: 5px; + padding-right: 5px; + font-weight: bold; + width: 150px; + text-align: right; + } + + #content .field .output { + float: left; + width: 250px; + padding-top: 5px; + text-align: left; + } + + #content .field .input { + float: left; + width: 250px; + text-align: left; + } + + #content .searchGroup { + width: 35%; + text-align: right; + } + + #content .buttonGroup { + width: 90%; + float: left; + text-align: center; + } + + #content .buttonGroup input[type="submit"], .buttonGroup input[type="button"] { + margin-right: 5px; + } + + #content .prev { + float: right; + } + + #content .next { + float: right; + } + + #content .next a { + margin-left: 20px; + } + + #content .summary { + width: 100%; + border: 1px solid #414f23; + border-collapse: collapse; + } + + #content .summary thead th { + border-left: 1px solid #414f23; + background: #fff url(../images/th.bg.gif) 0 100% repeat-x; + border-bottom: 1px solid #414f23; + padding: 6px; + text-align: left; + font-size: small; + } + + #content .summary tbody td { + border-left: 1px solid #9cac7c; + padding: 4px; + border-bottom: 1px solid #9cac7c; + font-size: 8pt; + } + + #local.spring{ + width: 215px; + } + + #footer.spring { + padding: 25px 0; + background-color : white; + border-top: 1px solid #C3BBB6; + } + + #footer.spring img { + float: right; + padding-right: 20px; + } \ No newline at end of file