1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #LockOn
- {
- display: none;
- position: absolute;
- z-index: 999;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background-color: #ccc;
- text-align: center;
- padding-top: 20%;
- filter: alpha(opacity=75);
- opacity: 0.75;
- }
- #ChatMain
- {
- width: 100%;
- height: 100%;
- }
- #contactList
- {
- width: 100%;
- height: 100%;
- }
- #waiting
- {
- position: absolute;
- z-index: 999;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background-color: #ccc;
- text-align: center;
- padding-top: 20%;
- filter: alpha(opacity=75);
- opacity: 0.75;
- }
- .oL
- {
- width: 100%;
- }
- .oL table
- {
- width: 100%;
- height: 50px;
- border-bottom: solid 2px Highlight;
- text-align: center;
- }
- #chatBox
- {
- width: 100%;
- display: none;
- }
- #MsgDiv
- {
- position: absolute;
- bottom: 0;
- background-color: Highlight;
- border: none;
- width: 100%;
- padding: 2px;
- }
- #msg {
- width:85%;
- margin-right: 0;
- margin-left: 0;
- border: none;
- padding: 0;
- height: 25px;
- }
- #send {
- width: 14%;
- margin-right: 0;
- margin-left: 0;
- height: 25px;
- }
- .detail {
- width: 100%;
- padding: 10px;
- }
- .newMsg {
- color: red;
- display: none;
- text-align: right;
- }
|