chatStyle.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #LockOn
  2. {
  3. display: none;
  4. position: absolute;
  5. z-index: 999;
  6. top: 0px;
  7. left: 0px;
  8. width: 100%;
  9. height: 100%;
  10. background-color: #ccc;
  11. text-align: center;
  12. padding-top: 20%;
  13. filter: alpha(opacity=75);
  14. opacity: 0.75;
  15. }
  16. #ChatMain
  17. {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. #contactList
  22. {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. #waiting
  27. {
  28. position: absolute;
  29. z-index: 999;
  30. top: 0px;
  31. left: 0px;
  32. width: 100%;
  33. height: 100%;
  34. background-color: #ccc;
  35. text-align: center;
  36. padding-top: 20%;
  37. filter: alpha(opacity=75);
  38. opacity: 0.75;
  39. }
  40. .oL
  41. {
  42. width: 100%;
  43. }
  44. .oL table
  45. {
  46. width: 100%;
  47. height: 50px;
  48. border-bottom: solid 2px Highlight;
  49. text-align: center;
  50. }
  51. #chatBox
  52. {
  53. width: 100%;
  54. display: none;
  55. }
  56. #MsgDiv
  57. {
  58. position: absolute;
  59. bottom: 0;
  60. background-color: Highlight;
  61. border: none;
  62. width: 100%;
  63. padding: 2px;
  64. }
  65. #msg {
  66. width:85%;
  67. margin-right: 0;
  68. margin-left: 0;
  69. border: none;
  70. padding: 0;
  71. height: 25px;
  72. }
  73. #send {
  74. width: 14%;
  75. margin-right: 0;
  76. margin-left: 0;
  77. height: 25px;
  78. }
  79. .detail {
  80. width: 100%;
  81. padding: 10px;
  82. }
  83. .newMsg {
  84. color: red;
  85. display: none;
  86. text-align: right;
  87. }