diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2008-02-03 23:23:24 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2008-02-03 23:23:24 +0000 |
| commit | d895b852a6e160496ffc760d46d3719a3d62ff86 (patch) | |
| tree | 52230bb04148197e8312e09b5c5273417e7a3be9 /css/site.css | |
Initial checkin of nutridb.org and basic subversion directory structure
Diffstat (limited to 'css/site.css')
| -rw-r--r-- | css/site.css | 267 |
1 files changed, 267 insertions, 0 deletions
diff --git a/css/site.css b/css/site.css new file mode 100644 index 0000000..89310aa --- /dev/null +++ b/css/site.css @@ -0,0 +1,267 @@ +body { + margin: 1em; + background-color: #ffffff; + font-family: Verdana, Arial; + font-size: 10pt; +} + +img { + border: none; +} + +table, caption { + font-size: inherit; + font-weight: inherit; + font-style: inherit; + font-variant: inherit; +} + +a { + color: blue; + text-decoration: none; +} + +a:visited { + color: blue; + text-decoration: none; +} + +a:hover { + color: blue; + text-decoration: underline; +} + +a.whiteLink { + color: #ffffff; + text-decoration: underline; +} + +a:visited.whiteLink { + color: #ffffff; + text-decoration: underline; +} + +a:hover.whiteLink { + color: #ffffff; + text-decoration: underline; +} + +#header { + height: 80px; + position: relative; + width: 100%; + background-color: #ccb8a6; +} + +#headerLeft { + position: absolute; + height: 60px; + line-height: 60px; + text-align: left; + padding-left: .5ex; + font-size: 150%; + font-weight: bold; + top: 0; + width: 60%; +} + +#headerMiddle { + position: absolute; + height: 55px; + text-align: right; + left: 60.5%; + width: 29%; + top: 0; + padding-top: 5px; +} + +#headerRight { + position: absolute; + height: 55px; + text-align: center; + left: 89.5%; + width: 10%; + top: 0; + padding-top: 5px; + padding-left: 1ex; +} + +#headerLinkBar { + position: absolute; + top: 60px; + width: 100%; + height: 20px; + background-color: #000000; +} + +#headerLinks { + position: absolute; + font-size: 8pt; + height: 20px; + line-height: 20px; + font-family: Arial, Verdana; + font-weight: bold; + color: #ffffff; + padding-left: 2ex; + width: 39%; + top: 0; +} + +#headerLinks a { + color: #ffffff; + text-decoration: none; +} + +#headerLinks a:visited { + color: #ffffff; + text-decoration: none; +} + +#headerLinks a:hover { + color: #ffffff; + text-decoration: underline; +} + +#footerLinks a { + color: #ffffff; + text-decoration: none; +} + +#footerLinks a:visited { + color: #ffffff; + text-decoration: none; +} + +#footerLinks a:hover { + color: #ffffff; + text-decoration: underline; +} + +#systemMsgs { + position: absolute; + width: 59%; + margin-left: 40%; + top: 0; + height: 20px; + font-size: 8pt; + line-height: 20px; + font-family: Arial, Verdana; + font-weight: bold; + text-align: right; + padding-right: 1ex; +} + +#leftData { + margin: 1ex; +} + +#middleData { + margin: 1ex 3ex 1ex 3ex; + /* + background-image: url("../images/grey_mouse_lemur_trans.png"); + background-repeat: no-repeat; + background-color: transparent; + background-position: center center; + */ +} + +#rightData { + margin: 1ex; +} + +#footerLinks { + text-align: center; + background-color: #000000; + height: 20px; + line-height: 20px; + color: white; + font-size: 7pt; +} + +.msgError { + color: red; +} + +.msgOkay { + color: green; +} + +.pageNav { + margin-top: 2ex; + margin-bottom: 2ex; + text-align: center; +} + +table.standardTable { + width: 100%; + border: 1px solid grey; +} + +tr.bgDark { + background: #e0e0e0; +} + +tr.bgLight { + background: #ffffff; +} + +.standardTable td { + border: 1px solid #e0e0e0; + padding-left: .5em; + text-align: left; + border: 1px solid #e0e0e0; +} + +.tableTitleRow { + font-weight: bold; + text-align: center; + background-color: #000000; + color: #ffffff; +} + +.standardMargins { + margin-top: 2ex; + margin-bottom: 2ex; +} + +.searchDiv { + margin-bottom: 2ex; + margin-left: auto; + margin-right: auto; + text-align: justify; + width: 75%; +} + +.registerDiv { + margin-bottom: 2ex; + margin-left: auto; + margin-right: auto; + text-align: justify; + width: 75%; +} + +.helpItem { + text-align: justify; + margin: 1em; +} + + +/*CSS for Bubble Tooltips by Alessandro Fulciniti +- http://pro.html.it - http://web-graphics.com */ +.tooltip { + width: 200px; + color: #000; + font: lighter 11px/1.3 Arial,sans-serif; + text-decoration: none; + text-align: center +} +.tooltip span.top { + padding: 30px 8px 0; + background: url(images/tooltip.gif) no-repeat top; +} +.tooltip b.bottom { + padding:3px 8px 15px; + color: #548912; + background: url(images/tooltip.gif) no-repeat bottom; +} +/* -------------------------------------------- */ |
