style.css 1.8 KB

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