home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / chatzilla.jar / skin / modern / chatzilla / output-marble.css < prev   
Cascading Style Sheet File  |  2000-01-27  |  3KB  |  173 lines

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  *
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *
  12.  * The Original Code is Mozilla JSIRC Library.
  13.  *
  14.  * The Initial Developer of the Original Code is New Dimensions Consulting,
  15.  * Inc. Portions created by New Dimensions Consulting, Inc. are
  16.  * Copyright (C) 1999 New Dimenstions Consulting, Inc. All
  17.  * Rights Reserved.
  18.  *
  19.  * Contributor(s): 
  20.  *
  21.  *
  22.  * Contributor(s):
  23.  *  Robert Ginda, rginda@ndcico.com, original author
  24.  * 
  25.  * Styles for output window, See test3.css for UI styles
  26.  *
  27.  */
  28.  
  29. body {
  30.  
  31.     margin: 0px 0px 0px 0px;
  32.     background: url(chrome://chatzilla/skin/images/xtal.jpg);
  33.  
  34. }
  35.  
  36. .bold {
  37.  
  38.     font-weight: bold;
  39.  
  40. }
  41.  
  42. .italic {
  43.  
  44.     font-style: italic;
  45.  
  46. }
  47.  
  48. .underline {
  49.  
  50.     text-decoration: underline;
  51.  
  52. }
  53.  
  54. .strikethrough {
  55.  
  56.     text-decoration: line-through;
  57.  
  58. }
  59.  
  60. .teletype {
  61.  
  62.     font-family: monospace;
  63.  
  64. }
  65.  
  66. .smallcap {
  67.  
  68.     font-variant: small-caps;
  69.  
  70. }
  71.  
  72. .rheet {
  73.  
  74.     font-size: 14pt;
  75.     font-weight: bold;
  76.     color: magenta;
  77.  
  78. }
  79.  
  80. /* output from a chat session (contains msgs) */
  81. .chat-view {
  82.  
  83.     vertical-align: text-bottom;
  84.  
  85. }
  86.  
  87. /* common container for all portions of a message
  88.  * (contains msg-*s) */
  89. .msg {
  90.  
  91.     font-family: sans-serif;
  92.  
  93. }
  94.  
  95. .msg[user="!ME"] {
  96.  
  97.     background: lightgrey;
  98.  
  99. }
  100.  
  101. /* message data in output window */
  102. .msg-data {
  103.  
  104.     font-weight: bold;
  105.  
  106. }
  107.  
  108. .msg-data[msgtype="JOIN"],
  109. .msg-data[msgtype="PART"] {
  110.  
  111.     font-variant: small-caps;
  112.     color: darkslategrey;
  113.  
  114. }
  115.  
  116. .msg-data[msgtype="ACTION"] {
  117.  
  118.     color: darkred;
  119.  
  120. }
  121.  
  122. .msg-data[msgtype="NOTICE"] {
  123.  
  124.     color: green;
  125.  
  126. }
  127.  
  128. .msg-data[msgtype="KICK"] {
  129.  
  130.     color: slategrey;
  131.  
  132. }
  133.  
  134. .msg-data[msgtype="QUIT"] {
  135.  
  136.     color: brown;
  137.  
  138. }
  139.  
  140. /* nickname field in output */
  141. .msg-user {
  142.     
  143.     text-align: center;
  144.     vertical-align: middle;
  145.     color: blue;
  146.     font-weight: bold;
  147.     background: grey;
  148.  
  149. }
  150.  
  151. .msg-user[user="!ME"] {
  152.  
  153.     color: green;
  154.  
  155. }
  156.  
  157. .msg-user[msgtype="ACTION"] {
  158.  
  159.     font-style: italic;
  160.  
  161. }
  162.  
  163. /* Message type indicator in output window */
  164. .msg-type {
  165.  
  166.     text-align: center;
  167.     vertical-align: middle;
  168.     color: brown;
  169.     font-weight: bold;
  170.     background: lightgrey;
  171.  
  172. }
  173.