From ac5b087ea2d9ba7428d367aaeb288534158fee9a Mon Sep 17 00:00:00 2001 From: christopherm Date: Fri, 1 Sep 2006 01:16:38 +0000 Subject: Initial Import git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/ledger-smb@1 4979c152-3d1c-0410-bac9-87ea11338e46 --- css/sql-ledger.css | 208 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) create mode 100755 css/sql-ledger.css (limited to 'css/sql-ledger.css') diff --git a/css/sql-ledger.css b/css/sql-ledger.css new file mode 100755 index 00000000..4e87df01 --- /dev/null +++ b/css/sql-ledger.css @@ -0,0 +1,208 @@ +/* stylesheet for sql-ledger */ + +/* general stuff */ +A:link { text-decoration: none; } +A:visited {text-decoration: none; } +A:active { text-decoration: underline; } +A:hover { color: transparent; + background-color: transparent; + text-decoration: none; +} + +body { + font-family: Arial, Verdana, Helvetica, sans-serif; + color: #444444; + font-size: 10pt; + background-color: #ffffff; + scrollbar-arrow-color: #FFFFFF; + scrollbar-3dlight-color: #dddddd; + scrollbar-highlight-color: #aaaaaa; + scrollbar-face-color: #aaaaaa; + scrollbar-shadow-color: #aaaaaa; + scrollbar-track-color: #cccccc; + scrollbar-darkshadow-color: #666666; +} + +td { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10pt; +} + +th { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10pt; +} + +/* login and admin */ +.login { + font-family: Verdana, Arial, Helvetica, sans-serif; +} +body.login { + background: #5a7d9b; + color: black; +} +h1.login { + font-size: 18pt; +} +table.login { + background-color: #FFFFFF; + padding: 20px; +} +td.login { + text-align: center; +} +th.login { + text-align: right; +} + +body.admin { + background-color: #FFFFFF; + color: black; +} + +body.menu { + background-color: #eeeeee; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + color: black; +} + +cornerlogo { + border: 1px solid #000000; + margin-left: auto; + margin-right: auto; + background: #ffffff; + padding: 4px; +} + +.menuOut { + cursor: pointer; + background-color: #eeeeee; + font-size: 11px; + color: #000084; + padding: 2px; + text-align: left; +} + +.menuOver { + cursor: pointer; + background-color: #004a80; + font-size: 11px; + color: #ffffff; + padding: 2px; + text-align: left; +} + +.submenu { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + padding-left: 5px; +} + +.menuOut a { + cursor: pointer; + margin: 0px; + background-color: #eeeeee; + font-size: 11px; + color: #000084; + border: 0px solid #000000; + padding: 0px; + text-align: left; +} + +.menuOver a { + margin: 0px; + background-color: transparent; + font-size: 11px; + color: #ffffff; + padding: 0px; + text-align: left; +} + +.submenu a { + color: #004a80; + text-decoration: none; +} + +.submenu a:hover { + text-decoration: none; + color: #eeeeee; + background: #004a80; + padding: 2px; +} + +.listtop { font-size: 10pt; background-color: black; color: white; } +.listheading { font-size: 10pt; background-color: #004a80; color: white; } +A.listheading:link, A.listheading:active, A.listheading:visited { + color: transparent; + text-decoration: none; } +.listrow1 { font-size: 10pt; background-color: #e6e6fa; color: black; vertical-align: top; } +.listrow0 { font-size: 10pt; background-color: #ffe4e1; color: black; vertical-align: top; } +.listsubtotal { font-size: 10pt; background-color: #5a7d9b; color: white; } +.listtotal { font-size: 10pt; background-color: #004d99; color: white; } + +textarea { + font-family: Verdana, Arial, Helvetica, sans-serif; + border: 1px solid #888888; + font-size: 11px; + background-color: #eeeeee; + font-weight: bold; +} + +input { + font-family: Verdana, Arial, Helvetica, sans-serif; + border: 1px solid #888888; + font-size: 11px; + background-color: #eeeeee; + font-weight: bold; +} + +select { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10pt; +} + +.submit { + font-size: 10pt; + color: #000080; + font-weight: normal; +} + +.checkbox, .radio { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10pt; +} + +.plus0 { /* font color for negative numbers */ + color: red; +} + +.plus1 { + color: green; +} + +h2.confirm { + color: blue; + font-size: 14pt; +} + +h2.error { + color: red; + font-size: 14pt; +} + + +/* media stuff */ + +@media screen { + .noscreen { /* items with this class won't display */ + display: none; + } +} + +@media print { + .noprint { /* items with this class won't print */ + display: none; + } +} + -- cgit v1.2.3