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-loud.css < prev    next >
Cascading Style Sheet File  |  2000-01-27  |  3KB  |  223 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.  *  Robert Ginda, rginda@ndcico.com, original author
  21.  * 
  22.  * Styles for output window, See test3.css for UI styles
  23.  *
  24.  */
  25.  
  26. body {
  27.  
  28.     margin: 0px 0px 0px 0px;
  29.     background: black;
  30.  
  31. }
  32.  
  33. .bold {
  34.  
  35.     font-weight: bold;
  36.  
  37. }
  38.  
  39. .italic {
  40.  
  41.     font-style: italic;
  42.  
  43. }
  44.  
  45. .underline {
  46.  
  47.     text-decoration: underline;
  48.  
  49. }
  50.  
  51. .strikethrough {
  52.  
  53.     text-decoration: line-through;
  54.  
  55. }
  56.  
  57. .teletype {
  58.  
  59.     font-family: monospace;
  60.  
  61. }
  62.  
  63. .smallcap {
  64.  
  65.     font-variant: small-caps;
  66.  
  67. }
  68.  
  69. .rheet {
  70.  
  71.     font-size: 14pt;
  72.     font-weight: bold;
  73.     color: magenta;
  74.  
  75. }
  76.  
  77. /* output from a chat session (contains msgs) */
  78. .chat-view {
  79.  
  80.     vertical-align: text-bottom;
  81.  
  82. }
  83.  
  84. /* common container for all portions of a message
  85.  * (contains msg-*s) */
  86. .msg {
  87.  
  88.     font-family: sans-serif;
  89.  
  90. }
  91.  
  92. .msg[user="!ME"] {
  93.  
  94.     background: lightgrey;
  95.  
  96. }
  97.  
  98. /* message data in output window */
  99. .msg-data {
  100.  
  101.     font-weight: bold;
  102.     color: lightgrey;
  103.     background: #1a2a44;
  104.  
  105. }
  106.  
  107. /* message data in output window */
  108.  
  109. .msg-data[user="!ME"]{
  110.  
  111.     background: black;
  112.  
  113. }
  114.  
  115. .msg-data[msgtype="JOIN"],
  116. .msg-data[msgtype="PART"] {
  117.  
  118.     width: 100%;
  119.     font-variant: small-caps;
  120.     background: lightgray;
  121.     color: black;
  122.  
  123. }
  124.  
  125. .msg-data[msgtype="HELLO"] {
  126.  
  127.     background: white;
  128.     color: darkgreen;
  129.  
  130. }
  131.  
  132. .msg-data[msgtype="ERROR"] {
  133.  
  134.     background: red;
  135.     color: white;
  136.  
  137. }
  138.  
  139. .msg-data[msgtype="USAGE"] {
  140.  
  141.     font-style: italic;
  142.     color: white;
  143.  
  144. }
  145.  
  146. .msg-data[msgtype="HELP"] {
  147.  
  148.     font-weight: normal;
  149.  
  150. }
  151.  
  152. .msg-data[msgtype="ACTION"] {
  153.  
  154.     color: cyan;
  155.  
  156. }
  157.  
  158. .msg-data[msgtype="NOTICE"] {
  159.  
  160.     color: yellow;
  161.  
  162. }
  163.  
  164. .msg-data[msgtype="KICK"] {
  165.  
  166.     background: orange;
  167.     color: yellow;
  168.  
  169. }
  170.  
  171. .msg-data[msgtype="QUIT"] {
  172.  
  173.     background: lightgrey;
  174.     color: brown;
  175.  
  176. }
  177.  
  178. /* nickname field in output */
  179. .msg-user {
  180.     
  181.     text-align: center;
  182.     vertical-align: middle;
  183.     color: lightgrey;
  184.     font-weight: bold;
  185.     background: grey;
  186.  
  187. }
  188.  
  189. .msg-user[parity="odd"]{
  190.  
  191.     background: black;
  192.  
  193. }
  194.  
  195. .msg-user[user="!ME"] {
  196.  
  197.     color : white;
  198.  
  199. }
  200.  
  201. .msg-user[msgtype="ACTION"] {
  202.  
  203.     font-style: italic;
  204.  
  205. }
  206.  
  207. /* Message type indicator in output window */
  208. .msg-type {
  209.  
  210.     text-align: center;
  211.     vertical-align: middle;
  212.     color: brown;
  213.     font-weight: bold;
  214.     background: lightgrey;
  215.  
  216. }
  217.  
  218. .msg-type[user="!ME"] {
  219.  
  220.     background: silver;
  221.  
  222. }
  223.