style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. .main {
  53. padding: 0.5em;
  54. background: #e0ecff;
  55. }
  56. #menu {
  57. margin-top: 1em;
  58. min-width: 7em;
  59. float: left;
  60. }
  61. #footer {
  62. position: fixed;
  63. bottom: 0;
  64. right: 0;
  65. color: #ccc;
  66. padding: 0.5em;
  67. }
  68. .section {
  69. clear: both;
  70. }
  71. .hidden {
  72. display: none;
  73. }
  74. .menu-item {
  75. cursor: pointer;
  76. padding: 0.1em 0.5em;
  77. }
  78. .menu-item-selected {
  79. font-weight: bold;
  80. }
  81. .message-list {
  82. min-height: 1em;
  83. background: white;
  84. margin: 0.5em 0;
  85. }
  86. .rounded {
  87. border-radius: 6px;
  88. -moz-border-radius: 6px;
  89. -webkit-border-radius: 6px;
  90. }
  91. .left-rounded {
  92. border-radius: 6px 0 0 6px;
  93. -moz-border-radius: 6px 0 0 6px;
  94. -webkit-border-radius: 6px 0 0 6px;
  95. }
  96. .bottom-rounded {
  97. border-radius: 0 0 6px 6px;
  98. -moz-border-radius: 0 0 6px 6px;
  99. -webkit-border-radius: 0 0 6px 6px;
  100. }
  101. .top-rounded {
  102. border-radius: 6px 6px 0 0;
  103. -moz-border-radius: 6px 6px 0 0;
  104. -webkit-border-radius: 6px 6px 0 0;
  105. }