annotate www/m/css/chat.css @ 6:33e6dc370ef7

fixed css
author tzara <rc-web@kiben.net>
date Wed, 04 Jul 2012 21:24:36 +0000
parents 9070b2a7ca65
children ea8d61c851c0
rev   line source
rc-web@5 1 #nicknames {
rc-web@5 2 position: relative;
rc-web@5 3 background-color: #666;
rc-web@5 4 padding: 6px 6px 6px;
rc-web@5 5 font: 15px Helvetica;
rc-web@5 6 }
rc-web@5 7
rc-web@5 8 .nickname-set #nickname {
rc-web@5 9 display: none;
rc-web@5 10 }
rc-web@5 11
rc-web@5 12 #chat,
rc-web@5 13 #nickname,
rc-web@5 14
rc-web@5 15 #messages {
rc-web@5 16 width: 300px;
rc-web@5 17 background-color: white;
rc-web@5 18 z-index: 2;
rc-web@5 19 }
rc-web@5 20
rc-web@5 21 #chat {
rc-web@5 22 left: 700px;
rc-web@5 23 top: 500px;
rc-web@5 24 border: 1px solid #ccc;
rc-web@5 25 background-color: white;
rc-web@5 26 font: 12px Helvetica;
rc-web@5 27 position: absolute;
rc-web@5 28 z-index: 2;
rc-web@5 29 opacity:0.5;
rc-web@5 30 }
rc-web@5 31
rc-web@5 32 #chatclient {
rc-web@5 33 right: 2px;
rc-web@5 34 border: 1px solid #ccc;
rc-web@5 35 background-color: black;
rc-web@5 36 # width: 300px;
rc-web@5 37 font: 12px Helvetica;
rc-web@5 38 position: absolute;
rc-web@5 39 bottom:50px;
rc-web@5 40 }
rc-web@5 41
rc-web@5 42 #nickname,
rc-web@5 43 #connecting {
rc-web@5 44 position: relative;
rc-web@5 45 height: 210px;
rc-web@5 46 width: 300px;
rc-web@5 47 color: #666;
rc-web@5 48 display: block;
rc-web@5 49 top:150px;
rc-web@5 50 font: 12px Helvetica;
rc-web@5 51 }
rc-web@5 52
rc-web@5 53 #nickname .wrap,
rc-web@5 54 #connecting .wrap {
rc-web@5 55 padding-top: 10px;
rc-web@5 56 }
rc-web@5 57 #nickname input {
rc-web@5 58 border: 1px solid #ccc;
rc-web@5 59 padding: 10px;
rc-web@5 60 }
rc-web@5 61 #nickname input:focus {
rc-web@5 62 border-color: #999;
rc-web@5 63 outline: 0;
rc-web@5 64 }
rc-web@5 65 #nickname #nickname-err {
rc-web@5 66 color: #8b0000;
rc-web@5 67 font-size: 12px;
rc-web@5 68 visibility: hidden;
rc-web@5 69 }
rc-web@5 70 .connected #connecting {
rc-web@5 71 display: none;
rc-web@5 72 }
rc-web@5 73 .nickname-set #nickname {
rc-web@5 74 display: none;
rc-web@5 75 }
rc-web@5 76 #messages {
rc-web@5 77 height: 100px;
rc-web@5 78 }
rc-web@5 79
rc-web@5 80 #messages em {
rc-web@5 81 text-shadow: 0 1px 0 #fff;
rc-web@5 82 color: #999;
rc-web@5 83 }
rc-web@5 84
rc-web@5 85 #messages p {
rc-web@5 86 padding: 0;
rc-web@5 87 margin: 0;
rc-web@5 88 font: 12px Helvetica, Arial;
rc-web@5 89 padding: 5px 10px;
rc-web@5 90 color:light-gray;
rc-web@5 91 background: white;
rc-web@5 92 }
rc-web@5 93 #messages p b {
rc-web@5 94 display: inline-block;
rc-web@5 95 padding-right: 10px;
rc-web@5 96 color:black;
rc-web@5 97 background: white;
rc-web@5 98 }
rc-web@5 99 #messages p:nth-child(even) {
rc-web@5 100 background: white;
rc-web@5 101 color: gray;
rc-web@5 102 }
rc-web@5 103
rc-web@5 104 #messages #nicknames span {
rc-web@5 105 color: #000;
rc-web@5 106 color: blue;
rc-web@5 107 }
rc-web@5 108 #messages #nicknames b {
rc-web@5 109 display: inline-block;
rc-web@5 110 color: blue;
rc-web@5 111 background: #999;
rc-web@5 112 padding: 3px 6px;
rc-web@5 113 margin-right: 5px;
rc-web@5 114 -webkit-border-radius: 10px;
rc-web@5 115 -moz-border-radius: 10px;
rc-web@5 116 border-radius: 10px;
rc-web@5 117 text-shadow: 0 1px 0 #666;
rc-web@5 118 }
rc-web@5 119 #messages #lines {
rc-web@5 120 height: 80px;
rc-web@5 121 overflow: auto;
rc-web@5 122 overflow-x:hidden;
rc-web@5 123 overflow-y: auto;
rc-web@5 124 background-color: white;
rc-web@5 125 font-size: 18px;
rc-web@5 126 color: black;
rc-web@5 127 }
rc-web@5 128 #messages #lines::-webkit-scrollbar {
rc-web@5 129 width: 6px;
rc-web@5 130 height: 6px;
rc-web@5 131 color: blue;
rc-web@5 132 }
rc-web@5 133 #messages #lines::-webkit-scrollbar-button:start:decrement,
rc-web@5 134 #messages #lines ::-webkit-scrollbar-button:end:increment {
rc-web@5 135 display: block;
rc-web@5 136 height: 10px;
rc-web@5 137 color: blue;
rc-web@5 138 }
rc-web@5 139 #messages #lines::-webkit-scrollbar-button:vertical:increment {
rc-web@5 140 background-color: #fff;
rc-web@5 141 color: blue;
rc-web@5 142 }
rc-web@5 143 #messages #lines::-webkit-scrollbar-track-piece {
rc-web@5 144 background-color: #fff;
rc-web@5 145 -webkit-border-radius: 3px;
rc-web@5 146 }
rc-web@5 147 #messages #lines::-webkit-scrollbar-thumb:vertical {
rc-web@5 148 height: 50px;
rc-web@5 149 background-color: #ccc;
rc-web@5 150 -webkit-border-radius: 3px;
rc-web@5 151 color: blue;
rc-web@5 152 }
rc-web@5 153 #messages #lines::-webkit-scrollbar-thumb:horizontal {
rc-web@5 154 width: 50px;
rc-web@5 155 background-color: #fff;
rc-web@5 156 -webkit-border-radius: 3px;
rc-web@5 157 color: black;
rc-web@5 158 }
rc-web@5 159 #send-message {
rc-web@5 160 background: #fff;
rc-web@5 161 position: relative;
rc-web@5 162 }
rc-web@5 163 #send-message input {
rc-web@5 164 height: 30px;
rc-web@5 165 line-height: 30px;
rc-web@5 166 vertical-align: middle;
rc-web@5 167 width: 300px;
rc-web@5 168 border: 1px solid #ccc;
rc-web@5 169 background-color:white;
rc-web@5 170 color: black;
rc-web@5 171 font: 15px Helvetica, Arial;
rc-web@5 172 }
rc-web@5 173 #send-message input:focus {
rc-web@5 174 outline: 0;
rc-web@5 175 }
rc-web@5 176 #send-message button {
rc-web@5 177 position: absolute;
rc-web@5 178 top: 5px;
rc-web@5 179 right: 5px;
rc-web@5 180 }