style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * vim:ts=2:sw=2:et:ai
  3. */
  4. body {
  5. font: 13px Arial; margin: 0.5em 1em;
  6. }
  7. .infobox {
  8. background: #eed;
  9. padding: 1px 1em;
  10. }
  11. .help-message {
  12. color: #aaa;
  13. }
  14. #middle {
  15. margin: 0.5em 0;
  16. }
  17. #error {
  18. background: #c44;
  19. color: white;
  20. font-weight: bold;
  21. }
  22. #content, .menu-item-selected, .chat-title, .chat-content {
  23. background: #c3d9ff;
  24. }
  25. #content {
  26. overflow: hidden;
  27. min-height: 7em;
  28. padding: 1em;
  29. }
  30. .chat-title {
  31. padding: 1px 1ex;
  32. }
  33. .chat-content {
  34. padding: 1ex;
  35. }
  36. .chat-window {
  37. }
  38. .message-row {
  39. margin: 2px;
  40. border-bottom: 1px solid #bbb;
  41. }
  42. .message-timestamp {
  43. color: #484;
  44. }
  45. .message-user {
  46. margin-left: 0.5em;
  47. font-weight: bold;
  48. }
  49. .message-text {
  50. margin-left: 0.5em;
  51. }
  52. .message-user-server {
  53. color: purple;
  54. }
  55. .message-text-server {
  56. font-style: italic;
  57. }
  58. .main {
  59. padding: 0.5em;
  60. background: #e0ecff;
  61. }
  62. #menu {
  63. margin-top: 1em;
  64. min-width: 7em;
  65. float: left;
  66. }
  67. #footer {
  68. position: fixed;
  69. bottom: 0;
  70. right: 0;
  71. color: #ccc;
  72. padding: 0.5em;
  73. }
  74. .section {
  75. clear: both;
  76. }
  77. .hidden {
  78. display: none;
  79. }
  80. .menu-item {
  81. cursor: pointer;
  82. padding: 0.1em 0.5em;
  83. }
  84. .menu-item-selected {
  85. font-weight: bold;
  86. }
  87. .message-list {
  88. min-height: 1em;
  89. background: white;
  90. margin: 0.5em 0;
  91. }
  92. .rounded {
  93. border-radius: 6px;
  94. -moz-border-radius: 6px;
  95. -webkit-border-radius: 6px;
  96. }
  97. .left-rounded {
  98. border-radius: 6px 0 0 6px;
  99. -moz-border-radius: 6px 0 0 6px;
  100. -webkit-border-radius: 6px 0 0 6px;
  101. }
  102. .bottom-rounded {
  103. border-radius: 0 0 6px 6px;
  104. -moz-border-radius: 0 0 6px 6px;
  105. -webkit-border-radius: 0 0 6px 6px;
  106. }
  107. .top-rounded {
  108. border-radius: 6px 6px 0 0;
  109. -moz-border-radius: 6px 6px 0 0;
  110. -webkit-border-radius: 6px 6px 0 0;
  111. }