style.css 1.8 KB

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