| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /****************************************************************
- ** IBM Confidential
- **
- ** OCO Source Materials
- **
- ** BI and PM: tm1web
- **
- ** (C) Copyright IBM Corp. 2007, 2009, 2011
- **
- ** The source code for this program is not published or otherwise
- ** divested of its trade secrets, irrespective of what has been
- ** deposited with the U.S. Copyright Office.
- *****************************************************************/
- html, body {
- background-color: #E2E9EF;
- margin: 0;
- padding: 0;
- height: 99%;
- color: #474749;
- font-size: 11px;
- font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
- scrollbar-base-color: #333;
- scrollbar-arrow-color: #464646;
- scrollbar-darkshadow-color: #9FABBB;
- scrollbar-track-color: #F2F5F7;
- scrollbar-face-color: #E8EBF0;
- scrollbar-shadow-color: #CED6E1;
- scrollbar-highlight-color: #F3F5F7;
- scrollbar-3dlight-color: #C4CEDB;
- }
- input.field, select.field {
- border-style: solid;
- border-width: 1px;
- border-color: #9FABBB;
- background-color: #FFFFFF;
- color: #464646;
- font-size: 11px;
- font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
- padding-left: 4px;
- }
- /* ------------------- START: LOGIN SPECIFIC STYLES ------------------- */
- #loginBody {
- background-position: center;
- background-repeat: no-repeat;
- }
- div#loginBoxWithShadow {
- position:absolute; left:50%; top:50%; width:275px; height:420px; z-index:1;
- margin-left:-138px;
- margin-top: -195px;
- }
- #loginBox {
- font-size: 11px;
- FONT-FAMILY: Tahoma, Verdana, Arial, Helvetica, sans-serif;
- color: black;
- padding:0px;
- position: absolute;
- border: solid 1px #808080;
- text-align:left;
- position: absolute; left: 0; right: 16px; top: 0; bottom: 0;
- background:#fff;
- -moz-opacity:0.85;
- -khtml-opacity: 0.85;
- opacity: 0.85;
- filter:alpha(opacity=85);
- }
- /* Firefox and IE7 only */
- html>body #loginBox {
- padding: 12px;
- }
- #loginBoxInner {
- width: 100%;
- height: 100%;
- padding: 0;
- }
- /* IE6 only */
- * html body #loginBoxInner {
- padding:12px;
- background:#fff;
- }
-
- /* IE6 only */
- * #loginBoxInner input {
- position: relative;
- z-index: 1;
- }
- /* IE6 only */
- * #loginBoxInner a {
- position: relative;
- z-index: 1;
- }
- /* IE6 only */
- * #loginBoxInner button {
- position: relative;
- z-index: 1;
- }
- /* Firefox and IE7 only */
- html>body #loginBox {
- /*background-image:url(../../images/loginpanel3.png);*/
- }
- #loginBox a {
- color:blue;
- }
- div#loginCopyright {
- font-size: 9px;
- }
- div#loginTitle {
- font-family:Tahoma;
- font-size:13px;
- font-weight:bold;
- text-align:left;
- }
- .loginInput {
- border: 1px solid #9FABBB;
- FONT-FAMILY: Tahoma, Verdana, Arial, Helvetica, sans-serif;
- font-size: 10px;
- float: none;
- text-align:left;
- }
- #loginButton {
- font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px;
- }
- .loginShadowTop {
- position: absolute; right: 0; top: 0; width: 16px; height: 30px;
- overflow: hidden;
- }
- /* Firefox and IE7 only */
- html>body .loginShadowTop {
- background-image:url(../../images/login_shadow_right_top.png);
- }
- .loginShadowMiddle {
- position: absolute; right: 0; top: 30px; width: 16px; bottom: 30px;
- overflow: hidden;
- }
- /* Firefox and IE7 only */
- html>body .loginShadowMiddle {
- background-image:url(../../images/login_shadow_right_side.png);
- background-repeat:repeat-y;
- }
- .loginShadowBottom {
- position: absolute; right: 0; bottom: 0; width: 16px; height: 30px;
- overflow: hidden;
- }
- /* Firefox and IE7 only */
- html>body .loginShadowBottom {
- background-image:url(../../images/login_shadow_right_bottom.png);
- }
- .loginShadowInner {
- width: 16px;
- }
- .textTop { vertical-align:text-top; }
- .textBottom { vertical-align:text-bottom; }
- /* ------------------- END: LOGIN SPECIFIC STYLES ------------------- */
|