style.css 1.83 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * vim:ts=2:sw=2:et:ai
 */

body {
  font: 13px Arial; margin: 0.5em 1em;
}

Sergey Lyubka's avatar
Sergey Lyubka committed
9 10 11 12 13 14 15
#logo {
  background: url('logo.png') no-repeat ;
  width: 160px;
  height: 40px;
  float: left;
}

16 17 18 19
td {
  text-align: left;
}

Sergey Lyubka's avatar
Sergey Lyubka committed
20 21 22 23
#motd {
  margin-left: 170px;
}

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
.infobox {
  background: #eed;
  padding: 1px 1em;
}

.help-message {
  color: #aaa;
}

#middle {
  margin: 0.5em 0;
}

#error {
  background: #c44;
  color: white;
  font-weight: bold;
}

#content, .menu-item-selected, .chat-title, .chat-content {
  background: #c3d9ff;
}

#content {
  overflow: hidden;
  min-height: 7em;
  padding: 1em;
}

.chat-title {
  padding: 1px 1ex;
}

.chat-content {
 padding: 1ex;
}

.chat-window {
}

.message-row {
  margin: 2px;
  border-bottom: 1px solid #bbb;
}

.message-timestamp {
  color: #484;
}

.message-user {
  margin-left: 0.5em;
  font-weight: bold;
}

.message-text {
  margin-left: 0.5em;
}

82 83 84 85 86 87 88 89
.message-user-server {
  color: purple;
}

.message-text-server {
  font-style: italic;
}

90 91
.main {
  padding: 0.5em;
92
  background: #f0fcff;
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
}

#menu {
  margin-top: 1em;
  min-width: 7em;
  float: left;
}

#footer {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #ccc;
  padding: 0.5em;
}

.section {
  clear: both;
}

.hidden {
  display: none;
}

.menu-item {
  cursor: pointer;
  padding: 0.1em 0.5em;
}

.menu-item-selected {
  font-weight: bold;
}

.message-list {
  min-height: 1em;
  background: white;
  margin: 0.5em 0;
}

.rounded {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.left-rounded {
  border-radius: 6px 0 0 6px;
  -moz-border-radius: 6px 0 0 6px;
  -webkit-border-radius: 6px 0 0 6px;
}

.bottom-rounded {
  border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
}

.top-rounded {
  border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
}