annotate www/m.a/css/chat.css @ 101:52e44ee1c791 tip master

enabled all scores in autostart script
author Rob Canning <rc@kiben.net>
date Tue, 21 Apr 2015 16:20:57 +0100
parents 49c94f63b8b0
children
rev   line source
rc-web@42 1 #chat,
rc-web@42 2 #nickname,
rc-web@42 3 #messages {
rc-web@42 4 width: 350px;
rc-web@42 5 }
rc-web@42 6 #chat {
rc-web@42 7 position: relative;
rc-web@42 8 border: 0px solid #ccc;
rc-web@42 9 background: black;
rc-web@42 10 border-radius: 15px;
rc-web@42 11 }
rc-web@42 12 #nickname,
rc-web@42 13 #connecting {
rc-web@42 14 position: absolute;
rc-web@42 15 height: 185px;
rc-web@42 16 z-index: 100;
rc-web@42 17 left: 0;
rc-web@42 18 top: 0;
rc-web@42 19 background: black;
rc-web@42 20 text-align: center;
rc-web@42 21 width: 350px;
rc-web@42 22 font: 15px Georgia;
rc-web@42 23 color: white;
rc-web@42 24 display: block;
rc-web@42 25 }
rc-web@42 26 #nickname .wrap,
rc-web@42 27 #connecting .wrap {
rc-web@42 28 padding-top: 60px;
rc-web@42 29 }
rc-web@42 30 #nickname input {
rc-web@42 31 border: 1px solid #ccc;
rc-web@42 32 padding: 10px;
rc-web@42 33 }
rc-web@42 34 #nickname input:focus {
rc-web@42 35 border-color: #999;
rc-web@42 36 outline: 0;
rc-web@42 37 }
rc-web@42 38 #nickname #nickname-err {
rc-web@42 39 color: #8b0000;
rc-web@42 40 font-size: 12px;
rc-web@42 41 visibility: hidden;
rc-web@42 42 }
rc-web@42 43 .connected #connecting {
rc-web@42 44 display: none;
rc-web@42 45 }
rc-web@42 46 .nickname-set #nickname {
rc-web@42 47 display: none;
rc-web@42 48 }
rc-web@42 49 #messages {
rc-web@42 50 height: 160px;
rc-web@42 51 !background: #eee;
rc-web@42 52 background: black;
rc-web@42 53 }
rc-web@42 54 #messages em {
rc-web@42 55 !text-shadow: 0 1px 0 #fff;
rc-web@42 56 !color: #999;
rc-web@42 57 color: white;
rc-web@42 58 }
rc-web@42 59 #messages p {
rc-web@42 60 padding: 0;
rc-web@42 61 margin: 0;
rc-web@42 62 font: 11px Helvetica, Arial;
rc-web@42 63 padding: 0px 10px;
rc-web@42 64 color: white;
rc-web@42 65 }
rc-web@42 66 #messages p b {
rc-web@42 67 display: inline-block;
rc-web@42 68 padding-right: 10px;
rc-web@42 69 color: white;
rc-web@42 70 }
rc-web@42 71 #messages p:nth-child(even) {
rc-web@42 72 !background: #fafafa;
rc-web@42 73 background: black;
rc-web@42 74 color: white;
rc-web@42 75 }
rc-web@42 76 #messages #nicknames {
rc-web@42 77 background: black;
rc-web@42 78 padding: 2px 4px 4px;
rc-web@42 79 font: 11px Helvetica;
rc-web@42 80 color: white;
rc-web@42 81 }
rc-web@42 82 #messages #nicknames span {
rc-web@42 83 color: #000;
rc-web@42 84 color: white;
rc-web@42 85 }
rc-web@42 86 #messages #nicknames b {
rc-web@42 87 display: inline-block;
rc-web@42 88 background: black;
rc-web@42 89 margin-right: 5px;
rc-web@42 90 color: yellow;
rc-web@42 91 }
rc-web@42 92 #messages #lines {
rc-web@42 93 height: 140px;
rc-web@42 94 overflow: auto;
rc-web@42 95 overflow-x: hidden;
rc-web@42 96 overflow-y: auto;
rc-web@42 97 }
rc-web@42 98 #messages #lines::-webkit-scrollbar {
rc-web@42 99 width: 6px;
rc-web@42 100 height: 6px;
rc-web@42 101 }
rc-web@42 102 #messages #lines::-webkit-scrollbar-button:start:decrement,
rc-web@42 103 #messages #lines ::-webkit-scrollbar-button:end:increment {
rc-web@42 104 display: block;
rc-web@42 105 height: 10px;
rc-web@42 106 }
rc-web@42 107 #messages #lines::-webkit-scrollbar-button:vertical:increment {
rc-web@42 108 background-color: #fff;
rc-web@42 109 }
rc-web@42 110 #messages #lines::-webkit-scrollbar-track-piece {
rc-web@42 111 background-color: #fff;
rc-web@42 112 -webkit-border-radius: 3px;
rc-web@42 113 }
rc-web@42 114 #messages #lines::-webkit-scrollbar-thumb:vertical {
rc-web@42 115 height: 50px;
rc-web@42 116 background-color: #ccc;
rc-web@42 117 -webkit-border-radius: 3px;
rc-web@42 118 }
rc-web@42 119 #messages #lines::-webkit-scrollbar-thumb:horizontal {
rc-web@42 120 width: 50px;
rc-web@42 121 background-color: #fff;
rc-web@42 122 -webkit-border-radius: 3px;
rc-web@42 123 }
rc-web@42 124 #send-message {
rc-web@42 125 background: gray;
rc-web@42 126 position: relative;
rc-web@42 127 border-radius:5px;
rc-web@42 128 }
rc-web@42 129 #send-message input {
rc-web@42 130 border: none;
rc-web@42 131 height: 20px;
rc-web@42 132 padding: 0 0px;
rc-web@42 133 line-height: 20px;
rc-web@42 134 vertical-align: middle;
rc-web@42 135 width: 330px;
rc-web@42 136 background:gray;
rc-web@42 137 color: yellow;
rc-web@42 138 border-radius:5px;
rc-web@42 139 }
rc-web@42 140 #send-message input:focus {
rc-web@42 141 outline: 0;
rc-web@42 142 }
rc-web@42 143 #send-message button {
rc-web@42 144 position: absolute;
rc-web@42 145 top: 3px;
rc-web@42 146 right: 5px;
rc-web@42 147 }
rc-web@42 148 button {
rc-web@42 149 margin: 0;
rc-web@42 150 -webkit-user-select: none;
rc-web@42 151 -moz-user-select: none;
rc-web@42 152 user-select: none;
rc-web@42 153 display: inline-block;
rc-web@42 154 text-decoration: none;
rc-web@42 155 background: #43a1f7;
rc-web@42 156 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #377ad0));
rc-web@42 157 background: -webkit-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
rc-web@42 158 background: -moz-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
rc-web@42 159 background: linear-gradient(top, #43a1f7 0%, #377ad0 100%);
rc-web@42 160 border: 1px solid #2e70c4;
rc-web@42 161 -webkit-border-radius: 16px;
rc-web@42 162 -moz-border-radius: 16px;
rc-web@42 163 border-radius: 16px;
rc-web@42 164 color: #fff;
rc-web@42 165 font-family: "lucida grande", sans-serif;
rc-web@42 166 font-size: 11px;
rc-web@42 167 font-weight: normal;
rc-web@42 168 line-height: 1;
rc-web@42 169 !padding: 3px 10px 5px 10px;
rc-web@42 170 text-align: center;
rc-web@42 171 text-shadow: 0 -1px 1px #2d6dc0;
rc-web@42 172 }
rc-web@42 173 button:hover,
rc-web@42 174 button.hover {
rc-web@42 175 background: darker;
rc-web@42 176 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #2e70c4));
rc-web@42 177 background: -webkit-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
rc-web@42 178 background: -moz-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
rc-web@42 179 background: linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
rc-web@42 180 border: 1px solid #2e70c4;
rc-web@42 181 cursor: pointer;
rc-web@42 182 text-shadow: 0 -1px 1px #2c6bbb;
rc-web@42 183 }
rc-web@42 184 button:active,
rc-web@42 185 button.active {
rc-web@42 186 background: #2e70c4;
rc-web@42 187 border: 1px solid #2e70c4;
rc-web@42 188 border-bottom: 1px solid #2861aa;
rc-web@42 189 text-shadow: 0 -1px 1px #2b67b5;
rc-web@42 190 }
rc-web@42 191 button:focus,
rc-web@42 192 button.focus {
rc-web@42 193 outline: none;
rc-web@42 194 -webkit-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
rc-web@42 195 -moz-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
rc-web@42 196 box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
rc-web@42 197 }