diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/percept/priv/server_root/css/percept.css | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/percept/priv/server_root/css/percept.css')
-rw-r--r-- | lib/percept/priv/server_root/css/percept.css | 161 |
1 files changed, 161 insertions, 0 deletions
diff --git a/lib/percept/priv/server_root/css/percept.css b/lib/percept/priv/server_root/css/percept.css new file mode 100644 index 0000000000..40d4e72693 --- /dev/null +++ b/lib/percept/priv/server_root/css/percept.css @@ -0,0 +1,161 @@ +/* + * %CopyrightBegin% + * + * Copyright Ericsson AB 2007-2009. All Rights Reserved. + * + * The contents of this file are subject to the Erlang Public License, + * Version 1.1, (the "License"); you may not use this file except in + * compliance with the License. You should have received a copy of the + * Erlang Public License along with this software. If not, it can be + * retrieved online at http://www.erlang.org/. + * + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + * the License for the specific language governing rights and limitations + * under the License. + * + * %CopyrightEnd% + */ + +/* Globals */ +html, body { + margin: 0; + padding: 0; + font: 12px Verdana; + background: #7a83a2; +} + +table { + border-collapse: collapse; + /*width: 100%;*/ +} + +tr.even { + background-color: #ffffff; color: black; +} + +tr.odd { + background-color: #def2ef; color: black; +} + +td { + text-valign: top; + text-align: right; + font: 14px Verdana; +} + +th { + letter-spacing: 2px; + text-align: right; + padding: 4px 4px 4px 8px; +} + +a { + color: yellow; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +td a { + color: #101010; +} + +img { + border: 0; +} + + +/* Header and footer stuff */ + +#header { + font: bold 24px Verdana; + padding-left: 156px; + padding-right: 156px; + padding-top: 10px; + padding-bottom: 10px; + height: 74px; + text-align: right; + background: #7a83a2; +} + +#footer { + font: 12px Verdana; + position: relative; + padding: 5px; + border-top: 1px solid black; + clear:left; +} + + +/* Content stuff */ + +#content { + background: #fefefe; + position: relative; + padding: 5px 25px 5px 25px; + margin: 0px 60px 0px 60px; + border-top: 1px solid #383a32; + border-left: 1px solid #383a32; + border-right: 1px solid #383a32; + border-bottom: 1px solid #383a32; +} + +.table_header { + font-decoration: underline; + width: 100%; +} + +/* Menu */ + +#menu { + margin: 0px 60px 0px 60px; + height: 30px; + padding-right: 0px; + background-image: url('../images/nav.png'); + background-repeat: repeat-x; + padding-top: 0px; + border-top: 1px solid #383a32; + border-left: 1px solid #383a32; + border-right: 1px solid #383a32; +} + +.menu_tabs { + overflow: hidden; +} + +.menu_tabs ul { + margin: 0; + padding: 0; + font: bold 12px Verdana; + list-style-type: none; +} + +.menu_tabs li { + display: inline; + margin: 0; + background-repeat: repeat-x; +} + +.menu_tabs li a { + float: right; + display: block; + text-decoration: none; + margin: 0; + padding: 8px; 7px 8px; 3px; + border-left: 1px solid #777487; +} + +.menu_tabs li a:visited { + color: black; +} + +.menu_tabs li a:hover { + background: #cae8ea; +} + +.menu_tabs li a:selected .menu_tabs li a:active { + background: yellow; +} |