rc-web@42
|
1 #chat,
|
rc-web@42
|
2 #nickname,
|
rc-web@42
|
3 #messages {
|
rc-web@42
|
4 width: 250px;
|
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: 125px;
|
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: 250px;
|
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@60
|
27 #connecting .wrap {padding-top: 30px; }
|
rc-web@60
|
28 #nickname input { border: 1px solid #ccc; padding: 10px; }
|
rc-web@60
|
29 #nickname input:focus { border-color: #999; outline: 0; }
|
rc-web@60
|
30 #nickname #nickname-err { color: #8b0000; font-size: 12px; visibility: hidden; }
|
rc-web@60
|
31 .connected #connecting { display: none; }
|
rc-web@60
|
32 .nickname-set #nickname { display: none; }
|
rc-web@60
|
33 #messages { height: 100px; background: black; }
|
rc-web@60
|
34 #messages em { color: white; }
|
rc-web@42
|
35 #messages p {
|
rc-web@42
|
36 padding: 0;
|
rc-web@42
|
37 margin: 0;
|
rc-web@60
|
38 font: 14px Helvetica, Arial;
|
rc-web@42
|
39 padding: 0px 10px;
|
rc-web@42
|
40 color: white;
|
rc-web@42
|
41 }
|
rc-web@42
|
42 #messages p b {
|
rc-web@42
|
43 display: inline-block;
|
rc-web@42
|
44 padding-right: 10px;
|
rc-web@42
|
45 color: white;
|
rc-web@42
|
46 }
|
rc-web@60
|
47
|
rc-web@42
|
48 #messages p:nth-child(even) {
|
rc-web@42
|
49 background: black;
|
rc-web@42
|
50 color: white;
|
rc-web@42
|
51 }
|
rc-web@42
|
52 #messages #nicknames {
|
rc-web@42
|
53 background: black;
|
rc-web@42
|
54 padding: 2px 4px 4px;
|
rc-web@42
|
55 font: 11px Helvetica;
|
rc-web@42
|
56 color: white;
|
rc-web@42
|
57 }
|
rc-web@42
|
58 #messages #nicknames span {
|
rc-web@42
|
59 color: #000;
|
rc-web@42
|
60 color: white;
|
rc-web@42
|
61 }
|
rc-web@42
|
62 #messages #nicknames b {
|
rc-web@42
|
63 display: inline-block;
|
rc-web@42
|
64 background: black;
|
rc-web@42
|
65 margin-right: 5px;
|
rc-web@42
|
66 color: yellow;
|
rc-web@42
|
67 }
|
rc-web@42
|
68 #messages #lines {
|
rc-web@42
|
69 height: 80px;
|
rc-web@42
|
70 overflow: auto;
|
rc-web@42
|
71 overflow-x: hidden;
|
rc-web@42
|
72 overflow-y: auto;
|
rc-web@42
|
73 }
|
rc-web@42
|
74 #messages #lines::-webkit-scrollbar {
|
rc-web@42
|
75 width: 6px;
|
rc-web@42
|
76 height: 6px;
|
rc-web@42
|
77 }
|
rc-web@42
|
78 #messages #lines::-webkit-scrollbar-button:start:decrement,
|
rc-web@42
|
79 #messages #lines ::-webkit-scrollbar-button:end:increment {
|
rc-web@42
|
80 display: block;
|
rc-web@42
|
81 height: 10px;
|
rc-web@42
|
82 }
|
rc-web@42
|
83 #messages #lines::-webkit-scrollbar-button:vertical:increment {
|
rc-web@42
|
84 background-color: #fff;
|
rc-web@42
|
85 }
|
rc-web@42
|
86 #messages #lines::-webkit-scrollbar-track-piece {
|
rc-web@42
|
87 background-color: #fff;
|
rc-web@42
|
88 -webkit-border-radius: 3px;
|
rc-web@42
|
89 }
|
rc-web@42
|
90 #messages #lines::-webkit-scrollbar-thumb:vertical {
|
rc-web@42
|
91 height: 50px;
|
rc-web@42
|
92 background-color: #ccc;
|
rc-web@42
|
93 -webkit-border-radius: 3px;
|
rc-web@42
|
94 }
|
rc-web@42
|
95 #messages #lines::-webkit-scrollbar-thumb:horizontal {
|
rc-web@42
|
96 width: 50px;
|
rc-web@42
|
97 background-color: #fff;
|
rc-web@42
|
98 -webkit-border-radius: 3px;
|
rc-web@42
|
99 }
|
rc-web@42
|
100 #send-message {
|
rc-web@42
|
101 background: black;
|
rc-web@42
|
102 position: relative;
|
rc-web@42
|
103 border-radius:5px;
|
rc-web@42
|
104 }
|
rc-web@42
|
105 #send-message input {
|
rc-web@42
|
106 border: none;
|
rc-web@42
|
107 height: 20px;
|
rc-web@42
|
108 padding: 0 0px;
|
rc-web@42
|
109 line-height: 20px;
|
rc-web@42
|
110 vertical-align: middle;
|
rc-web@42
|
111 width: 200px;
|
rc-web@42
|
112 background:black;
|
rc-web@42
|
113 color: yellow;
|
rc-web@42
|
114 border-radius:5px;
|
rc-web@42
|
115 border: 1px solid white;
|
rc-web@42
|
116 }
|
rc-web@42
|
117 #send-message input:focus {
|
rc-web@42
|
118 outline: 0;
|
rc-web@42
|
119 }
|
rc-web@42
|
120 #send-message button {
|
rc-web@42
|
121 position: absolute;
|
rc-web@42
|
122 top: 3px;
|
rc-web@42
|
123 right: 5px;
|
rc-web@42
|
124 }
|
rc-web@42
|
125 button {
|
rc-web@42
|
126 margin: 0;
|
rc-web@42
|
127 -webkit-user-select: none;
|
rc-web@42
|
128 -moz-user-select: none;
|
rc-web@42
|
129 user-select: none;
|
rc-web@42
|
130 display: inline-block;
|
rc-web@42
|
131 text-decoration: none;
|
rc-web@43
|
132 background: white;
|
rc-web@42
|
133 border: 1px solid #2e70c4;
|
rc-web@42
|
134 -webkit-border-radius: 16px;
|
rc-web@42
|
135 -moz-border-radius: 16px;
|
rc-web@42
|
136 border-radius: 16px;
|
rc-web@43
|
137 color: black;
|
rc-web@42
|
138 font-family: "lucida grande", sans-serif;
|
rc-web@42
|
139 font-size: 11px;
|
rc-web@42
|
140 font-weight: normal;
|
rc-web@42
|
141 line-height: 1;
|
rc-web@42
|
142 text-align: center;
|
rc-web@42
|
143 text-shadow: 0 -1px 1px #2d6dc0;
|
rc-web@42
|
144 }
|
rc-web@42
|
145 button:hover,
|
rc-web@42
|
146 button.hover {
|
rc-web@43
|
147 background: white;
|
rc-web@42
|
148 border: 1px solid #2e70c4;
|
rc-web@42
|
149 cursor: pointer;
|
rc-web@42
|
150 text-shadow: 0 -1px 1px #2c6bbb;
|
rc-web@42
|
151 }
|
rc-web@42
|
152 button:active,
|
rc-web@42
|
153 button.active {
|
rc-web@42
|
154 background: #2e70c4;
|
rc-web@42
|
155 border: 1px solid #2e70c4;
|
rc-web@42
|
156 border-bottom: 1px solid #2861aa;
|
rc-web@42
|
157 text-shadow: 0 -1px 1px #2b67b5;
|
rc-web@42
|
158 }
|
rc-web@42
|
159 button:focus,
|
rc-web@42
|
160 button.focus {
|
rc-web@42
|
161 outline: none;
|
rc-web@42
|
162 -webkit-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
|
rc-web@42
|
163 -moz-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
|
rc-web@42
|
164 box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
|
rc-web@42
|
165 } |