(file) Return to style.css CVS log (file) (dir) Up to [RizwankCVS] / geekymedia_web / twiki / pub / TWiki / PatternSkin

   1 rizwank 1.1 
   2             /*	-----------------------------------------------------------
   3             	STYLE
   4             	Appearance: margins, fonts, colors
   5             	-----------------------------------------------------------	*/
   6             
   7             /*	-----------------------------------------------------------
   8             	General elements
   9             	-----------------------------------------------------------	*/
  10             	
  11             /* HTML elements */
  12             
  13             html body {
  14             	line-height:1.55em;
  15             	font-family:"Lucida Grande", verdana, lucida, helvetica, sans-serif;
  16             	background-color:#f8f8f8;
  17             	margin:0;
  18             	padding:0;
  19             	font-size:x-small;
  20             	voice-family:"\"}\""; 
  21             	voice-family:inherit;
  22 rizwank 1.1 	font-size:small;
  23             }
  24             html>body {
  25             	font-size:small;	
  26             }
  27             
  28             /* be kind to netscape 4 that doesn't understand inheritance */
  29             body, p, li, ul, ol, dl, dt, dd, acronym, h1, h2, h3, h4, h5, h6 {
  30             	background-color:transparent;
  31             }
  32             p {
  33             	margin:1em 0 0 0;
  34             }
  35             table {
  36             	border-collapse:separate;
  37             }
  38             strong, b {
  39             	font-weight:bold;
  40             }
  41             hr {
  42             	color:#9E9E70;
  43 rizwank 1.1 	background-color:#9E9E70;
  44             	height:1px;
  45             	border:none;
  46             }
  47             pre, code, tt {
  48             	font-size:100%;
  49             	line-height:1.4em;
  50             	color:#7A4707;
  51             }
  52             pre {
  53             	margin-top:1em;
  54             	margin-bottom:1em;
  55             }
  56             
  57             /* Text */
  58             
  59             h1, h2, h3, h4, h5, h6 {
  60             	font-family:"Lucida Grande", helvetica, lucida, verdana, sans-serif;
  61             	line-height:104%;
  62             	padding:0;
  63             	margin:1em 0 0.1em 0;
  64 rizwank 1.1 }
  65             h1 {
  66             	font-size:210%;
  67             	color:#e24628;
  68             	margin:0 0 0.1em 0;
  69             }
  70             h2 {
  71             	font-size:145%;
  72             	display:block;
  73             	background-color:#F3EDE7;
  74             	color:#900;
  75             	padding:0.2em 0.7em;
  76             	margin:1em -0.7em 0.15em -0.7em;
  77             	height:auto;
  78             }
  79             h3 { font-size:140%; color:#900;}
  80             h4 { font-size:125%; color:#900;}
  81             h5 { font-size:110%; color:#900;}
  82             h6 { font-size:95%; color:#900;}
  83             
  84             /* Links */
  85 rizwank 1.1 
  86             :link:focus,
  87             :visited:focus,
  88             :link,
  89             :visited,
  90             :link:active,
  91             :visited:active {
  92             	text-decoration:none;
  93             	color:#1e5bbd;
  94             	background-color:transparent;
  95             }
  96             :link:hover,
  97             :visited:hover {
  98             	text-decoration:underline;
  99             	background-color:#b4d5ff;
 100             	color:#1559B3;
 101             }
 102             a:link img,
 103             a:visited img,
 104             a:hover img,
 105             a:active img {
 106 rizwank 1.1 	background-color:transparent;
 107             }
 108             th a:link,
 109             th a:visited {
 110             	font-weight:bold;
 111             }
 112             
 113             /* sorting of table columns */
 114             /* not yet finalized for tables in topic text */
 115             
 116             th.twikiSortedAscendingCol a:link,
 117             th.twikiSortedAscendingCol a:visited {
 118             	border-top:1px solid #999; /* a neutral color that should work on light and dark backgrounds */
 119             }
 120             th.twikiSortedAscendingCol a:hover,
 121             th.twikiSortedAscendingCol a:hover {
 122             	text-decoration:none;
 123             	border-top:0;
 124             	border-bottom:1px solid #999;
 125             }
 126             th.twikiSortedDescendingCol a:link,
 127 rizwank 1.1 th.twikiSortedDescendingCol a:visited,
 128             th.twikiSortedDescendingCol a:link,
 129             th.twikiSortedDescendingCol a:visited {
 130             	border-bottom:1px solid #999;
 131             }
 132             th.twikiSortedDescendingCol a:hover,
 133             th.twikiSortedDescendingCol a:hover {
 134             	text-decoration:none;
 135             	border-bottom:0;
 136             	border-top:1px solid #999;
 137             }
 138             
 139             /* Forms */
 140             
 141             form { 
 142             	display:inline;
 143             	margin:0;
 144             	padding:0;
 145             }
 146             textarea {
 147             	font-family:monospace;
 148 rizwank 1.1 	font-size:100%;
 149             	margin:0.25em 0;
 150             }
 151             input, select {
 152             	font-family:verdana,arial,sans-serif;
 153             	padding:1px;
 154             	/*background-color:#E8F1F9;*/
 155             }
 156             select {
 157             	padding:0;
 158             	font-size:100%;
 159             }
 160             fieldset {
 161             	border:1px solid #22638c;
 162             	padding-left:1em;
 163             }
 164             legend {
 165             	padding: 0.2em 1em;
 166             	color:#8490A1; /* .twikiGrayText value */
 167             	font-size:95%;
 168             	border:1px solid #8490A1; /* .twikiGrayText value */
 169 rizwank 1.1 	background-color:#f8f8f8;
 170             }
 171             label {
 172             	margin-left:0.5em;
 173             	font-size:95%;
 174             	line-height:125%;
 175             }
 176             
 177             /*	-----------------------------------------------------------
 178             	TWiki specific elements
 179             	-----------------------------------------------------------	*/
 180             
 181             .twikiMiddleContainer {}
 182             .twikiMain {
 183             	padding:0 3.5em;
 184             	background-color:white;
 185             	border-width:1px;
 186             	border-style:solid;
 187             	border-color:#ddd #ddd #ddd #ddd;
 188             }
 189             
 190 rizwank 1.1 /* Top bar */
 191             
 192             .twikiTopBar {
 193             	background-color:transparent;
 194             }
 195             .twikiTopBar ul li a:link,
 196             .twikiTopBar ul li a:visited {
 197             	padding:0.25em 0.85em;
 198             	text-decoration:none;
 199             	float:left;
 200             	color:white;
 201             	font-weight:bold;
 202             	background-color:transparent/*#98A2B0*/;
 203             	margin-right:1px;
 204             }
 205             .twikiTopBar ul li a:hover {
 206             	background-color:#b4d5ff;
 207             	color:#1559B3;
 208             	text-decoration:underline;
 209             }
 210             .twikiTopBarContents {
 211 rizwank 1.1 	margin:0;
 212             	padding:5px 2em 5px 1em; /* right padding same as .twikiViewPage .twikiMain */
 213             }
 214             
 215             /* Left bar */
 216             
 217             .twikiLeftBar {
 218             	border-top:1px solid #ddd;
 219             	color:#800;
 220             	overflow:hidden;
 221             	line-height:1.3em;
 222             }
 223             .twikiWebIndicator {
 224             	font-size:95%;
 225             	line-height:1.4em;
 226             	padding:0.3em 0;
 227             	background-color:#efefef; /* color variable WEBBGGCOLOR is set in twiki.pattern.tmpl */
 228             	color:black;
 229             	text-align:center;
 230             	border-bottom:2px solid white;
 231             }
 232 rizwank 1.1 .twikiLeftBarContents {
 233             	font-size:95%;
 234             	font-weight:normal;
 235             	margin:0;
 236             	padding:1em 0 1.7em 1em;
 237             	width:auto;
 238             	border-top:3px solid #22638C;
 239             }
 240             .twikiLeftBar ul {
 241             	padding:0;
 242             	margin:0;
 243             }
 244             .twikiLeftBar strong a:link,
 245             .twikiLeftBar strong a:visited {
 246             	font-weight:bold;
 247             }
 248             .twikiLeftBar li {
 249             	display:block;
 250             	list-style:none;
 251             	width:100%;
 252             }
 253 rizwank 1.1 .twikiLeftBar li a {
 254             	display:block;
 255             	width:98%;
 256             	padding-right:2%;
 257             }
 258             html>body .twikiLeftBar li a {
 259             	width:auto;
 260             }
 261             .twikiLeftBar hr {
 262             	color:#ccc;
 263             	background-color:#ccc;
 264             	height:1px;
 265             	border:none;
 266             }
 267             .twikiLeftBarPersonal {
 268             	margin:-0.5em -1px -0.5em -1em;
 269             	margin-top:1.5em;
 270             	padding:0.25em 0 0.5em 1em;
 271             	background-color:#DFEDFD;
 272             	border-top:1px solid #ccc;
 273             	border-bottom:1px solid #ccc;
 274 rizwank 1.1 }
 275             .twikiLeftBarPersonal p {
 276             	margin:0.5em 0 0 0;
 277             }
 278             .twikiLeftBarPersonal a:visited {
 279             	color:#666;
 280             }
 281             
 282             /* Bottom bar */
 283             
 284             .twikiBottomBar {
 285             	padding-bottom:1em;
 286             }
 287             .twikiBottomBarContents {
 288             	padding:0.5em 2.5em 1.5em 0.5em;
 289             	font-size:90%;
 290             	line-height:140%;
 291             }
 292             
 293             /* Topic text */
 294             
 295 rizwank 1.1 .twikiTopic {
 296             	padding-bottom:1.5em;
 297             	background-color:transparent;
 298             }
 299             .twikiTopic table {
 300             	width:auto;
 301             }
 302             .twikiTopic table th a:link,
 303             .twikiTopic table th a:visited {
 304             	text-decoration:none;
 305             }
 306             .twikiTopic ul {
 307             	margin-top:0;
 308             	line-height:130%;
 309             }
 310             .twikiTopic a:link {
 311             	text-decoration:underline;
 312             }
 313             .twikiTopic a:visited {
 314             	text-decoration:underline;
 315             	color:#666;
 316 rizwank 1.1 }
 317             .twikiTopic h1 a:link,
 318             .twikiTopic h1 a:visited,
 319             .twikiTopic h2 a:link,
 320             .twikiTopic h2 a:visited {
 321             	text-decoration:none;
 322             	color:#1559B3;
 323             	border:none;
 324             	font-weight:bold;
 325             }
 326             .twikiTopic a:hover {
 327             	color:#1559B3;
 328             }
 329             
 330             /**	----------------------------------
 331             *	Attachments table, form
 332             *	---------------------------------- */
 333             
 334             .twikiAttachments,
 335             .twikiForm {
 336             	margin:2em 0;
 337 rizwank 1.1 }
 338             .twikiAttachments table,
 339             .twikiForm table {
 340             	border-collapse:collapse;
 341             	padding:0px;
 342             	border-spacing:0px;
 343             	empty-cells:show;
 344             	border:0px;
 345             	font-size:90%;
 346             	color:#888e9c;
 347             	background-color:white;
 348             	border-top:1px solid #ccc;
 349             	border-right:1px solid #ccc;
 350             	border-left:1px solid #ccc;
 351             }
 352             .twikiAttachments table {
 353             	background-color:white;
 354             	line-height:1.4em;
 355             	width:auto;
 356             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 357             	voice-family:inherit;
 358 rizwank 1.1 	width:100%;
 359             }
 360             .twikiAttachments th,
 361             .twikiForm th,
 362             .twikiAttachments th,
 363             .twikiForm th {
 364             	padding:0.2em 0.6em;
 365             	height:2.5em;
 366             	border-color:#ccc;
 367             	border-left:1px solid #ccc;
 368             	border-bottom:1px solid #ccc;
 369             	background-color:white;
 370             	vertical-align:middle;
 371             }
 372             .twikiAttachments th.twikiFirstCol,
 373             .twikiForm th.twikiFirstCol {
 374             	border-left:none;
 375             	width:0px;
 376             }
 377             /* don't show any of those ugly sort icons */
 378             .twikiAttachments th img,
 379 rizwank 1.1 .twikiAttachments th a:link img,
 380             .twikiAttachments th a:visited img {
 381             	display:none;
 382             }
 383             .twikiAttachments td,
 384             .twikiForm td {
 385             	border:0px;
 386             	border-bottom:1px solid #ccc;
 387             	padding:0.2em 0.6em;
 388             	background-color:white;
 389             	height:1.4em;
 390             	text-align:left;
 391             	vertical-align:top;
 392             }
 393             /*
 394             .twikiAttachments td {
 395                white-space:nowrap;
 396             }
 397             */
 398             .twikiAttachments td.twikiFirstCol,
 399             .twikiForm td.twikiFirstCol {
 400 rizwank 1.1 	border-left:none;
 401             }
 402             .twikiAttachments p,
 403             .twikiForm p {
 404             	display:none;
 405             }
 406             .twikiAttachments th a:link,
 407             .twikiAttachments th a:visited,
 408             .twikiForm th a:link,
 409             .twikiForm th a:visited {
 410             	color:#1559B3;
 411             	border-color:#345;
 412             	text-decoration:none;
 413             }
 414             .twikiAttachments th font,
 415             .twikiForm th font {
 416             	color:#1559B3;
 417             }
 418             .twikiAttachments th a:hover,
 419             .twikiForm th a:hover {
 420             	text-decoration:underline;
 421 rizwank 1.1 	background-color:transparent;
 422             	border-color:#345;
 423             }
 424             .twikiAttachments td a:link,
 425             .twikiAttachments td a:visited,
 426             .twikiForm td a:link,
 427             .twikiForm td a:visited {
 428             	font-weight: normal;
 429             }
 430             .twikiAttachments th.twikiSortedAscendingCol,
 431             .twikiAttachments th.twikiSortedDescendingCol {
 432             	background-color:#DADADA;
 433             }
 434             .twikiAttachments th.twikiSortedAscendingCol a:link,
 435             .twikiAttachments th.twikiSortedAscendingCol a:visited,
 436             .twikiAttachments th.twikiSortedDescendingCol a:link,
 437             .twikiAttachments th.twikiSortedDescendingCol a:visited {
 438             	color:#345;
 439             }
 440             .twikiAttachments th.twikiSortedAscendingCol a:hover,
 441             .twikiAttachments th.twikiSortedDescendingCol a:hover {
 442 rizwank 1.1 	text-decoration:none;
 443             	background-color:transparent;
 444             }
 445             
 446             /* twikiTopicAction: actions buttons at bottom of page */
 447             
 448             /* If someone has enough insight or time to spare, please
 449             create a div based solution instead of tables */
 450             
 451             .twikiTopicAction {
 452             	margin:2em 0 3em 0;
 453             	background-color:#22638c; /* for Explorer 5.x so the whole row is blue */
 454             }
 455             .twikiTopicAction table,
 456             table.twikiTopicAction {
 457             	padding:0px;
 458             	border-spacing:0px;
 459             	border-collapse:collapse;
 460             	empty-cells:show;
 461             	border:0px;
 462             	font-size:95%;
 463 rizwank 1.1 	color:white;
 464             	width:inherit;
 465             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 466             	voice-family:inherit;
 467             	width:100%;
 468             }
 469             .twikiTopicAction a:link,
 470             .twikiTopicAction a:visited {
 471             	color:white;
 472             	border-bottom:1px solid #698FA8;
 473             	text-decoration:none;
 474             	font-weight:bold;
 475             }
 476             .twikiTopicAction a:hover {
 477             	color:#1559B3;
 478             	border-bottom:1px solid #b4d5ff;
 479             }
 480             .twikiTopicAction tr {
 481             	background-color:#22638c;
 482             }
 483             .twikiTopicAction th {
 484 rizwank 1.1 	border:none;
 485             }
 486             .twikiTopicAction td {
 487             	height:2em;
 488             	border:none;
 489             	padding:0.3em 1em;
 490             	vertical-align:middle;
 491             	text-align:left;
 492             }
 493             .twikiTopicAction td.twikiCancelCol {
 494             	text-align:left;
 495             	width:auto;
 496             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 497             	voice-family:inherit;
 498             	width:20%;
 499             }
 500             .twikiTopicAction td.twikiSubmitCol {
 501             	text-align:center;
 502             	width:auto;
 503             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 504             	voice-family:inherit;
 505 rizwank 1.1 	width:40%;
 506             }
 507             .twikiTopicAction .twikiSubmitOptions {
 508             	background-color:#D4E6FC;
 509             	border:1px solid #B6C6D9;
 510             	margin:0.25em 0;
 511             }
 512             .twikiTopicAction td.twikiAddCol {
 513             	text-align:right;
 514             	width:auto;
 515             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 516             	voice-family:inherit;
 517             	width:20%;
 518             }
 519             .twikiTopicAction a:hover {
 520             	color:#1559B3;
 521             	border-bottom:1px solid #b4d5ff;
 522             }
 523             .twikiTopicActionSecondary {
 524             	padding:0.15em 0.5em 0.15em 1em;
 525             	background-color:white;
 526 rizwank 1.1 }
 527             .twikiTopicActionHelp,
 528             .twikiTopicAction .twikiTopicActionHelp {
 529             	background-color:white;
 530             	padding:0;
 531             }
 532             .twikiTopicActionSecondary,
 533             .twikiTopicAction .twikiTopicActionSecondary {
 534             	background-color:#DFEDFD;
 535             	color:#22638c;
 536             	border-top:1px solid #bbb;
 537             }
 538             .twikiTopicActionSecondary td.twikiSubmitCol {
 539             	text-align:left;
 540             }
 541             .twikiTopicActionSecondary a:link,
 542             .twikiTopicActionSecondary a:visited {
 543             	color:#1e5bbd;
 544             	border-bottom:1px solid #A3BCF1;
 545             	text-decoration:none;
 546             }
 547 rizwank 1.1 .twikiTopicActionSecondary a:hover {
 548             	color:#1e5bbd;
 549             	border-bottom:1px solid #b4d5ff;
 550             }
 551             .twikiTopicActionHelp a:link,
 552             .twikiTopicActionHelp a:visited  {
 553             	border-bottom:0px;
 554             }
 555             .twikiTopicAction .twikiSeparator {
 556             	display:inline;
 557             	color:white;
 558             }
 559             .twikiTopicAction input,
 560             .twikiTopicAction label {
 561             	font-size:100%;
 562             }
 563             
 564             /**	----------------------------------
 565             *	TOC
 566             *	---------------------------------- */
 567             
 568 rizwank 1.1 .twikiToc {
 569             	display:block;
 570             	font-size:95%;
 571             	line-height:1.6em;
 572             	margin:1em 0 2em 0;
 573             	padding:0.3em 0 0.6em 0;
 574             	border-top:1px solid;
 575             	border-bottom:1px solid;
 576             	border-color:#ddd;
 577             }
 578             
 579             .twikiToc ul {
 580             	list-style:outside;
 581             	padding:0 0 0 0.5em;
 582             	margin:0;
 583             	/* list style image ref in twiki.pattern.tmpl */
 584             	/*list-style-image:url(/twiki/pub/TWiki/PatternSkin/i_arrow_down.gif);*/
 585             }
 586             .twikiToc li {
 587             	margin-left:2em;
 588             }
 589 rizwank 1.1 .twikiToc .twikiTocTitle {
 590             	margin:0;
 591             	padding:0;
 592             	font-weight:bold;
 593             	color:#666;
 594             }
 595             .twikiToc a:link,
 596             .twikiToc a:visited {
 597             	text-decoration:none;
 598             	color:#1e5bbd;
 599             	border:0;
 600             }
 601             .twikiToc a:hover {
 602             	text-decoration:underline;
 603             }
 604             .twikiToc li a {
 605             	display:block;	
 606             	width:100%;
 607             }
 608             html>body .twikiToc li a {
 609             	width:auto;
 610 rizwank 1.1 }
 611             
 612             /* Topic info */
 613             
 614             .twikiTopicInfo {
 615             	margin:0.5em 0 0 0;
 616             }
 617             
 618             /* Revision info */
 619             
 620             .twikiRevInfo {
 621             	display:block;
 622             	font-size:95%;
 623             }
 624             .twikiRevInfo em,
 625             .twikiRevInfo i {
 626             	font-style:normal;
 627             }
 628             
 629             /* Footer */
 630             
 631 rizwank 1.1 .twikiTopicFooter {
 632             	display:block;
 633             	margin-top:1em;
 634             	padding-bottom:2em;
 635             }
 636             
 637             /* Homepath */
 638             
 639             .twikiHomePath {
 640             	font-size:90%;
 641             }
 642             .twikiHomePath a:hover {
 643             	text-decoration:underline;
 644             }
 645             
 646             /* Tool bar at top of topic */
 647             
 648             .twikiToolBar {
 649             	display:block;
 650             	padding:0.3em 0 1em 0;
 651             	margin-left:-0.55em; /* same amount as button padding */
 652 rizwank 1.1 	margin-bottom:0.5em;
 653             }
 654             .twikiToolBar p {
 655             	clear:both;
 656             	height:0;
 657             	display:none;
 658             }
 659             .twikiToolBar ul {
 660             	display:inline;
 661             	padding:0;
 662             	margin:0;
 663             	float:left;
 664             	font-size:95%;
 665             }
 666             .twikiToolBar ul li {
 667             	display:inline;
 668             	color:#8490A1; /* .twikiGrayText value */
 669             	font-weight:bold;
 670             	background-color:transparent;
 671             }
 672             .twikiToolBar ul li s,
 673 rizwank 1.1 .twikiToolBar ul li strike {
 674             	padding:0 0.55em;
 675             	float:left;
 676             }
 677             .twikiToolBar ul li a:link,
 678             .twikiToolBar ul li a:visited {
 679             	padding:0 0.55em;
 680             	float:left;
 681             	text-decoration:none;
 682             	color:#8490A1; /* .twikiGrayText value */
 683             	font-weight:bold;
 684             }
 685             .twikiToolBar ul li a:hover {
 686             	background-color:#b4d5ff;
 687             	color:#1559B3;
 688             	text-decoration:none;
 689             }
 690             .twikiToolBar .twikiRevInfo {
 691             	text-align:right;
 692             }
 693             .twikiToolbarElem {
 694 rizwank 1.1 	margin-left:0.7em;
 695             }
 696             
 697             /* page nav:top to, to bottom */
 698             
 699             .twikiPageNav {
 700             	font-size:95%;
 701             	font-weight:bold;
 702             	margin-left:1em;
 703             	margin-bottom:1em;
 704             }
 705             
 706             /* Moved message */
 707             
 708             .twikiMoved {}
 709             
 710             /* search box */
 711             
 712             .twikiSearchBox {
 713             	color:#8490A1; /* .twikiGrayText value */
 714             }
 715 rizwank 1.1 .twikiSearchBox td {
 716             	height:50px;
 717             	vertical-align:middle;
 718             	background-color:transparent;
 719             	text-align:right;
 720             }
 721             .twikiSearchBox input {
 722             	border:1px solid #ccc;
 723             }
 724             
 725             /* table used in various places */
 726             
 727             .twikiVersatileTable table {
 728             	width:auto;
 729             	padding:0px;
 730             	border-spacing:0px;
 731             	border-collapse:collapse;
 732             	empty-cells:show;
 733             	border:0px;
 734             	border:1px solid #ccc;
 735             	margin-top:1em;
 736 rizwank 1.1 	font-size:95%;
 737             }
 738             .twikiVersatileTable th,
 739             .twikiVersatileTable td {
 740             	vertical-align:top;
 741             	border:0px;
 742             	border-top:1px solid #ccc;
 743             }
 744             .twikiVersatileTable td {
 745             	padding:0.2em 0.5em;
 746             	background-color:#F5F7FD;
 747             }
 748             .twikiVersatileTable th {
 749             	padding:0.5em 0.5em;
 750             	vertical-align:top;
 751             	font-weight:bold;
 752             	background-color:#E0E9F7;
 753             }
 754             .twikiVersatileTable .twikiMainCol {
 755             	background-color:white;
 756             }
 757 rizwank 1.1 .twikiVersatileTable .twikiOldCol {
 758             	background-color:#E9E9E9;
 759             }
 760             .twikiVersatileTable input {
 761             	background-color:white;
 762             }
 763             .twikiVersatileTable input.twikiCheckbox {
 764             	background-color:transparent;
 765             }
 766             
 767             /*	-----------------------------------------------------------
 768             	Other styles
 769             	-----------------------------------------------------------	*/
 770             
 771             .twikiSeparator {
 772             	font-family:Arial,sans-serif;
 773             }
 774             .twikiHelp ul {
 775             	margin-top:0;
 776             	margin-bottom:0;
 777             }
 778 rizwank 1.1 .twikiSubmit,
 779             .twikiButton {
 780             	font-size:90%;
 781             	font-weight:normal;
 782             	padding:0;
 783             	margin:0 0.15em;
 784             }
 785             .twikiSubmit {
 786             	color:#041D3A;
 787             	background-color:#f2f2f2;
 788             	border-top:1px solid #fff;
 789             	border-right:1px solid #333;
 790             	border-bottom:1px solid #333;
 791             	border-left:1px solid #fff;
 792             }
 793             .twikiButton {
 794             	color:#05264D;
 795             	background-color:#f2f2f2;
 796             	border:1px solid #aaa;
 797             }
 798             .twikiCheckbox,
 799 rizwank 1.1 .twikiRadioButton {
 800             	border:none;
 801             	background-color:transparent;
 802             }
 803             .twikiTopic .twikiSubmit { /* topic submit button */
 804             	background-color:#E8F1F9;
 805             }
 806             .twikiSecondary { }
 807             .twikiTertiary {
 808             	background-color:#B9D6FA;
 809             }
 810             .twikiCancel { /* cancel button */
 811             	background-color:#eee;
 812             }
 813             .twikiBroadcastMessage {
 814             	background-color:#ff0;
 815             	color:black;
 816             	padding:0.2em 0.7em;
 817             	margin:0 -0.7em 0.5em -0.7em;
 818             }
 819             .twikiBroadcastMessage b,
 820 rizwank 1.1 .twikiBroadcastMessage strong {
 821             	color:#f00;
 822             }
 823             .twikiAlert {
 824             	color:#f00;
 825             }
 826             .twikiGrayText,
 827             .twikiHelpCol {
 828             	color:#8490A1;
 829             }
 830             .twikiGrayText a:link,
 831             .twikiGrayText a:visited,
 832             .twikiHelpCol a:link,
 833             .twikiHelpCol a:visited {
 834             	color:#8490A1; /* .twikiGrayText value */
 835             	text-decoration:underline;
 836             }
 837             .twikiGrayText a:hover,
 838             .twikiHelpCol a:hover{
 839             	color:#1559B3;
 840             }
 841 rizwank 1.1 .twikiSmall {
 842             	font-size:85%;
 843             }
 844             .twikiNew { }
 845             .twikiSummary {
 846             	font-size:85%;
 847             	line-height:1.3em;
 848             }
 849             .twikiNewLink {
 850             	background-color:transparent;
 851             }
 852             
 853             /*	-----------------------------------------------------------
 854             	Search results
 855             	styles and overridden styles used in search.pattern.tmpl
 856             	-----------------------------------------------------------	*/
 857             	
 858             .twikiSearchResults {}
 859             .twikiSearchResultsHeader,
 860             .twikiSearchString {
 861             	padding:0.2em 0.7em 0.2em 0.7em;
 862 rizwank 1.1 	margin:0.15em -0.7em 0.25em -0.7em;
 863             	font-weight:bold;
 864             	background-color:#F3EDE7;
 865             	border-bottom:1px solid #ccc;
 866             }
 867             .twikiSearchString {
 868             	background-color:transparent;
 869             	margin-bottom:1em;
 870             	border-bottom:0px;
 871             }
 872             .twikiSearchResults table {
 873             	width:auto;
 874             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
 875             	voice-family:inherit;
 876             	width:100%;
 877             }
 878             .twikiSearchResults .twikiTopRow {
 879             	padding-top:0.2em;
 880             }
 881             .twikiSearchResults .twikiBottomRow {
 882             	padding-bottom:0.25em;
 883 rizwank 1.1 	border-bottom:1px solid #ddd;
 884             }
 885             .twikiSearchResults .twikiAlert {
 886             	color:#f00;
 887             	font-weight:bold;
 888             }
 889             .twikiSearchResults .twikiSummary .twikiAlert {
 890             	color:#900;
 891             	font-weight:normal;
 892             }
 893             .twikiSearchResults .twikiNew b {
 894             	font-weight:normal;
 895             }
 896             .twikiSearchResultCount {
 897             	margin:0.5em 0 2em 0;
 898             	font-size:95%;
 899             }
 900             .twikiViewPage .twikiSearchResultsBegin { /* for changes template with noheader="on" */
 901             	height:1px;
 902             	border-bottom:1px solid #ddd;
 903             }
 904 rizwank 1.1 
 905             /* Search results in book view format */
 906             
 907             .twikiBookViewList .twikiSearchResultsHeader {
 908             	margin-bottom:1em;
 909             }
 910             .twikiBookViewList .twikiTopRow {
 911             	padding:0.2em 0.7em 0.2em 0.7em;
 912             	margin:2.5em -0.7em 0.15em -0.7em;
 913             	background-color:#22638c;
 914             	color:#ccc;
 915             }
 916             .twikiBookViewList .twikiTopRow a:link, 
 917             .twikiBookViewList .twikiTopRow a:visited {
 918             	color:white;
 919             }
 920             .twikiBookViewList .twikiTopRow a:hover {
 921             	color:#1e5bbd;
 922             }
 923             .twikiBookViewList .twikiBottomRow {
 924             	font-size:100%;
 925 rizwank 1.1 	padding:1em 0;
 926             	border-color:#ddd;
 927             }
 928             .twikiBookViewList .twikiBottomRow {
 929             	width:auto;
 930             }
 931             .twikiBookViewList .twikiSearchResultCount {
 932             	color:#22638c;
 933             }
 934             
 935             
 936             /*	-----------------------------------------------------------
 937             	View
 938             	styles and overridden styles used in twiki.pattern.tmpl and view.pattern.tmpl
 939             	-----------------------------------------------------------	*/
 940             
 941             .twikiViewPage .twikiMain {
 942             	padding-right:2em;
 943             }
 944             .twikiViewPage .twikiAttachments,
 945             .twikiViewPage .twikiForm,
 946 rizwank 1.1 .twikiPreviewPage .twikiAttachments,
 947             .twikiPreviewPage .twikiForm {
 948             	background-color:#f1f1f1;
 949             	padding:2em;
 950             	border-top:1px solid #bbb;
 951             	margin-top:0;
 952             	margin-bottom:0em;
 953             }
 954             .twikiViewPage .twikiTopicAction,
 955             .twikiDiffPage .twikiTopicAction {
 956             	margin:0 0 1.5em 0;
 957             	padding:0.5em 2em 0.6em 2em;
 958             	border:none;
 959             	font-size:95%;
 960             	line-height:1.5em;
 961             	color:white;
 962             	font-weight:normal;
 963             	background-color:#98A2B0;
 964             }
 965             .twikiViewPage .twikiTopicAction a:link,
 966             .twikiViewPage .twikiTopicAction a:visited,
 967 rizwank 1.1 .twikiDiffPage .twikiTopicAction a:link,
 968             .twikiDiffPage .twikiTopicAction a:visited {
 969             	border-bottom:1px solid #ccc;
 970             	text-decoration:none;
 971             	font-weight:bold;
 972             	color:white;
 973             }
 974             .twikiViewPage .twikiTopicAction a:hover,
 975             .twikiDiffPage .twikiTopicAction a:hover {
 976             	text-decoration:none;
 977             	border-bottom:1px solid #b4d5ff;
 978             	color:#1559B3;
 979             }
 980             .twikiViewPage .twikiTopicAction a:active,
 981             .twikiDiffPage .twikiTopicAction a:active {
 982             	color:white;
 983             }
 984             
 985             /*	-----------------------------------------------------------
 986             	Pages that are not view
 987             	-----------------------------------------------------------	*/
 988 rizwank 1.1 
 989             .twikiNoViewPage .twikiMain {
 990             	padding-top:2.5em;
 991             	padding-bottom:2em;
 992             }
 993             .twikiNoViewPage h1 {
 994             	font-size:170%; /* as big as h2 in topic */
 995             }
 996             .twikiNoViewPage .twikiMain {
 997             	border-top:0px;
 998             }
 999             
1000             /*	-----------------------------------------------------------
1001             	Edit
1002             	styles and overridden styles used in edit.pattern.tmpl
1003             	-----------------------------------------------------------	*/
1004             
1005             .twikiEditPage .twikiFormHolder { /* constrains the width of the textarea */
1006             	width:auto;
1007             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1008             	voice-family:inherit;
1009 rizwank 1.1 	width:100%;
1010             }
1011             .twikiEditPage textarea {
1012             	background-color:#FCFAF7;
1013             	width:auto;
1014             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1015             	voice-family:inherit;
1016             	width:100%;
1017             }
1018             .twikiEditPage .twikiHelp {
1019             	margin-top:2em;
1020             	border-top:1px solid #ccc;
1021             }
1022             .twikiEditPage .twikiHelp code {
1023             	color:#900;
1024             }
1025             .twikiEditPage table.twikiChangeFormButtonHolder {
1026             	margin-bottom:0.5em;
1027             	width:auto;
1028             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1029             	voice-family:inherit;
1030 rizwank 1.1 	width:100%;
1031             }
1032             .twikiChangeFormButton {
1033             	padding:0;
1034             	margin:0;
1035             	color:#888;
1036             	font-size:90%;
1037             	background-color:transparent;
1038             	border:none;
1039             }
1040             .twikiEditPage .twikiEditForm {
1041             	margin-top:1.5em;
1042             }
1043             .twikiEditPage .twikiEditForm table {
1044             	width:auto;
1045             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1046             	voice-family:inherit;
1047             	width:100%;
1048             }
1049             .twikiEditPage .twikiEditForm th {
1050             	border-left:none;
1051 rizwank 1.1 	background-color:#E0E9F7; /*#EFEDEA;*/
1052             	padding-left:1em;
1053             	color:black;
1054             }
1055             .twikiEditPage .twikiEditForm td {
1056             	border-left:1px solid #ddd;
1057             	padding-right:1em;
1058             	padding-left:0.5em;
1059             	background-color:#F5F7FD; /*#E8F1F9;*/
1060             	vertical-align:middle;
1061             }
1062             .twikiEditPage .twikiEditForm input,
1063             .twikiEditPage .twikiEditForm select {
1064             	font-size:100%;
1065             }
1066             .twikiEditPage .twikiEditFormTextField {
1067             	width:auto;
1068             }
1069             .twikiEditPage .twikiSig {
1070             	margin:0.5em 0;
1071             }
1072 rizwank 1.1 .twikiEditPage .twikiSig input {
1073             	background-color:#EFEDEA;
1074             	border:1px solid #ddd;
1075             	padding:2px;
1076             	width:25em;
1077             	font-family:monospace;
1078             	font-size:100%;
1079             }
1080             .twikiEditPage .twikiTopicAction {
1081             	margin-top:0;
1082             }
1083             
1084             /*	-----------------------------------------------------------
1085             	Preview
1086             	styles and overridden styles used in preview.pattern.tmpl
1087             	-----------------------------------------------------------	*/
1088             	
1089             .twikiPreviewPage .twikiMain {
1090             	background-color:transparent;
1091             }
1092             .twikiPreviewPage .twikiTopic {
1093 rizwank 1.1 	padding-top:1.5em;
1094             }
1095             .twikiPreviewPage .twikiPreviewArea {
1096             	background-color:white;
1097             	border:1px solid #22638c;
1098             	margin:1em -2em 0 -2em;
1099             	padding:0 2em 1em 2em;
1100             }
1101             .twikiPreviewPage .twikiHelp ul {
1102             	margin-top:0;
1103             }
1104             .twikiPreviewPage .twikiTopic h1 {
1105             	font-size:210%; /* restore original size */
1106             }
1107             	
1108             /*	-----------------------------------------------------------
1109             	Attach
1110             	styles and overridden styles used in attach.pattern.tmpl
1111             	-----------------------------------------------------------	*/
1112             
1113             .twikiAttachPage .twikiVersatileTable table {
1114 rizwank 1.1 	width:auto;
1115             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1116             	voice-family:inherit;
1117             	width:100%;	
1118             }
1119             .twikiAttachPage .twikiVersatileTable th,
1120             .twikiAttachPage .twikiVersatileTable td {
1121             	padding:0.7em 1em 0.7em 1.25em;
1122             }
1123             .twikiAttachPage .twikiVersatileTable th {
1124             	text-align:left;
1125             	width:12em;
1126             	padding-left:1em;
1127             }
1128             .twikiAttachPage .twikiVersatileTable td.twikiHelpCol {
1129             	width:17em;
1130             }
1131             .twikiAttachPage .twikiTopicAction {
1132             	margin:2em 0 1em 0;
1133             }
1134             .twikiAttachPage .twikiHelp {
1135 rizwank 1.1 	margin:2em 0 3em 0;
1136             }
1137             .twikiAttachPage .twikiHelp ul {
1138             	padding:0;
1139             	margin:1em 0 0 0;
1140             }
1141             .twikiAttachPage .twikiHelp ul li {
1142             	list-style:none;
1143             	line-height:150%;
1144             }
1145             .twikiAttachPage .twikiPrevious .twikiAttachments table {
1146             	width:auto;
1147             	color:black;
1148             }
1149             .twikiAttachPage .twikiTopic {
1150             	padding-bottom:0;
1151             }
1152             
1153             /*	-----------------------------------------------------------
1154             	ChangeForm
1155             	styles and overridden styles used in attach.pattern.tmpl
1156 rizwank 1.1 	-----------------------------------------------------------	*/
1157             
1158             .twikiChangeFormPage .twikiVersatileTable table {
1159             	width:auto;
1160             }
1161             .twikiChangeFormPage .twikiVersatileTable th {
1162             	text-align:left;
1163             	padding:0.25em 1em;
1164             }
1165             .twikiChangeFormPage .twikiVersatileTable td {
1166             	padding:1em;
1167             }
1168             .twikiChangeFormPage .twikiVersatileTable ul {
1169             	margin:0;
1170             	padding:0;
1171             }
1172             .twikiChangeFormPage .twikiVersatileTable li {
1173             	list-style:inside;
1174             	margin:0;
1175             	padding:0;
1176             }
1177 rizwank 1.1 
1178             /*	-----------------------------------------------------------
1179             	Rename
1180             	styles and overridden styles used in rename.pattern.tmpl
1181             	-----------------------------------------------------------	*/
1182             	
1183             .twikiRenamePage .twikiVersatileTable {
1184             	margin-bottom:3em;
1185             }
1186             .twikiRenamePage .twikiVersatileTable table {
1187             	width:auto;
1188             	voice-family: "\"}\""; /* hide the following for Explorer 5.x */
1189             	voice-family:inherit;
1190             	width:100%;	
1191             }
1192             .twikiRenamePage .twikiVersatileTable th {
1193             	text-align:right;
1194             	padding-left:2em;
1195             }
1196             .twikiRenamePage .twikiVersatileTable td {
1197             	padding:0.5em 0.5em;
1198 rizwank 1.1 }
1199             .twikiRenamePage .twikiVersatileTable .twikiHelpCol {
1200             	width:22em;
1201             }
1202             .twikiRenamePage .twikiVersatileTable th.lastRow,
1203             .twikiRenamePage .twikiVersatileTable td.lastRow {
1204             	border-top:none;
1205             }
1206             .twikiRenamePage .twikiHelp {
1207             	margin:1em 0 1em 0;
1208             	padding:0.25em 0 0.5em 0;
1209             }
1210             .twikiRenamePage .twikiTopicActionSecondary {
1211             	margin:1.5em 0;
1212             }
1213             
1214             /*	-----------------------------------------------------------
1215             	Diff
1216             	styles and overridden styles used in rdiff.pattern.tmpl
1217             	-----------------------------------------------------------	*/
1218             
1219 rizwank 1.1 .twikiDiffPage table {
1220             	width:auto;
1221             }
1222             .twikiDiffPage .twikiSearchResultsHeader {
1223             	border-bottom:0;
1224             }
1225             .twikiDiffPage .twikiSearchResults {
1226             	padding-bottom:3em;
1227             }
1228             .twikiDiffPage .twikiDiffTable th,
1229             .twikiDiffPage .twikiDiffTable td {
1230             	padding:0.1em;
1231             }
1232             
1233             /* Deleted */
1234             
1235             .twikiDiffPage .twikiDiffDeletedHeader {
1236             	background-color:#FF3000;
1237             	color:white;
1238             	padding-left:1em;
1239             }
1240 rizwank 1.1 .twikiDiffPage .twikiDiffDeletedMarker {
1241             	background-color:#FF3000;
1242             }
1243             .twikiDiffPage .twikiDiffDeletedText {
1244             	background-color:#FFEAE5;
1245             }
1246             
1247             /* Added */
1248             
1249             .twikiDiffPage .twikiDiffAddedHeader {
1250             	background-color:#3DB234;
1251             	color:white;
1252             	padding-left:1em;
1253             }
1254             .twikiDiffPage .twikiDiffAddedMarker {
1255             	background-color:#3DB234;
1256             }
1257             .twikiDiffPage .twikiDiffAddedText {
1258             	background-color:#EBF7EA;
1259             }
1260             
1261 rizwank 1.1 /* Changed */
1262             
1263             .twikiDiffPage th.twikiDiffChangedHeader,
1264             .twikiDiffPage td.twikiDiffChangedHeader {
1265             	background-color:#98A2B0;
1266             	color:white;
1267             	padding-left:1em;
1268             	text-align:center;
1269             }
1270             .twikiDiffPage .twikiDiffChangedText {}
1271             
1272             /* Unchanged */
1273             
1274             .twikiDiffPage .twikiDiffUnchangedText {}
1275             .twikiDiffPage .twikiDiffUnchangedTextContents { }
1276             .twikiDiffPage .twikiDiffLineNumberHeader {
1277             	margin:2em 0;
1278             	background-color:#ddd;
1279             }
1280             
1281             /*	-----------------------------------------------------------
1282 rizwank 1.1 	Print
1283             	styles and overridden styles used in print.pattern.tmpl
1284             	-----------------------------------------------------------	*/
1285             	
1286             .twikiPrintPage .twikiMain {
1287             	border-left:0;
1288             	border-top:0;
1289             	padding-top:2em;
1290             }
1291             .twikiPrintPage h2 {
1292             	border-bottom:1px solid #900;
1293             }
1294             .twikiPrintPage .twikiAttachments,
1295             .twikiPrintPage .twikiForm {
1296             	background-color:#ddd;
1297             }
1298             
1299             /*	-----------------------------------------------------------
1300             	Plain
1301             	styles and overridden styles used in plain.pattern.tmpl
1302             	-----------------------------------------------------------	*/
1303 rizwank 1.1 	
1304             .twikiPlainPage .twikiMain {
1305             	padding-top:2.5em;
1306             	padding-bottom:2em;
1307             }

Rizwan Kassim
Powered by
ViewCVS 0.9.2