From 0d270fdb93f22373a4dafd76d0c17bbad4358312 Mon Sep 17 00:00:00 2001 From: Udo Spallek Date: Sun, 7 Jan 2007 17:51:37 +0000 Subject: [PATCH] W2000like Stylesheet von http://wiki.lx-office.org/index.php/Alternative_css_stylesheets --- css/Win2000.css | 136 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 css/Win2000.css diff --git a/css/Win2000.css b/css/Win2000.css new file mode 100644 index 000000000..4ef66a9d6 --- /dev/null +++ b/css/Win2000.css @@ -0,0 +1,136 @@ +/* stylesheet for LX-Office ERP +Getestet mit W3C CSS-Validator: +Keine Fehler oder Warnungen gefunden +*/ + +A:link { color: black; text-decoration: none; } +A:visited { color: black; text-decoration: none; } +A:active { color: black; text-decoration: underline; } +input:focus, textarea:focus, select:focus, option:focus { background-color: yellow; } +A.nohover:hover { + color:white; + background-color: #093280; + font-size: 10pt; + text-decoration: none; +} +A:hover { + color:white; + background-color: #093280; + font-size: 10pt; + text-decoration: none; +} +body { + font-family: Verdana, Arial, Helvetica; + font-size: 10pt; + background-color: #D4D0C8; + color: black +} +td { + font-family: Verdana, Arial, Helvetica; + color: black; + font-size: 10pt; + font-weight: normal; +} +th { + font-family: Verdana, Arial, Helvetica; + color: black; + font-size: 10pt; + font-weight: normal; +} +/* login and admin */ +.login { + font-family: Verdana, Arial, Helvetica; +} +body.login { + background: #b8d1f3; + color: #D4D0C8; +} +h1.login { + font-size: 18pt; +} +table.login { + background-color: #efedde; + padding: 20px; +} +td.login { + text-align: center; +} +th.login { + text-align: right; +} +body.admin { + background-color:#ffffff; + color: black; +} +body.menu { + background-color: white; + font-family: Verdana, Arial, Helvetica; + font-size:10pt; + color: black; +} +.listtop { + background-color: #b8d1f3; + text-align:left; + padding:5px; + font-size: 10pt; + color: black; + font-weight: bolder; + border-bottom: 2px solid #A5A29C; +} +.listheading { + font-size: 10pt; + padding:3px; + background-color: #b8d1f3; + color: black; + font-weight: bolder; + text-align:left; +} +.subsubheading { + color: black; + font-weight: bolder; + text-decoration: underline; +} +.optionen { + border:dashed; + border-width:1px; + background:#D4D0C8; +} +/* Bei Listen den Farbwechsel zur besseren Lesbarkeit: */ +.listrow1 { background-color: #C8D4C6; color: black; vertical-align: top; } +.listrow0 { background-color: white; color: black; vertical-align: top; } +.listsubtotal { border-top: 1px solid black; font-size: 10pt; background-color: #b8d1f3; color: black; font-weight: bolder;} +.listtotal { border-top: 1px double black; font-size: 10pt; background-color: #b8d1f3; color: black; font-weight: bolder;} +.submit { + font-family: Verdana, Arial, Helvetica; + color: #000000; +} +.checkbox, .radio { + font-family: Verdana, Arial, Helvetica; + color: #778899; +} +.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; + } +} + -- 2.20.1