style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. body
  2. {
  3. background:#FCFCFC;
  4. }
  5. .say-btn
  6. {
  7. text-align:right;
  8. margin-top:12px;
  9. }
  10. #dialog
  11. {
  12. min-height:600px;
  13. background:#EEEEEE;
  14. max-height: 80vh;
  15. overflow: scroll;
  16. }
  17. .textarea
  18. {
  19. height:6em;
  20. width:100%;
  21. }
  22. #userlist
  23. {
  24. min-height:600px;
  25. background:#EEEEEE;
  26. }
  27. #userlist > li
  28. {
  29. color:#1372A2;
  30. list-style:none;
  31. margin-left:12px;
  32. }
  33. #userlist > h4
  34. {
  35. text-align:center;
  36. font-size:14px;
  37. font-weight:nold;
  38. }
  39. .words
  40. {
  41. margin:8px;
  42. }
  43. .triangle-isosceles {
  44. position:relative;
  45. padding:10px;
  46. margin:10px 0 15px;
  47. color:#000;
  48. background:#D3FF93; /* default background for browsers without gradient support */
  49. background:-webkit-gradient(linear, 0 0, 0 100%, from(#EFFFD7), to(#D3FF93));
  50. background:-moz-linear-gradient(#EFFFD7, #D3FF93);
  51. background:-o-linear-gradient(#EFFFD7, #D3FF93);
  52. background:linear-gradient(#EFFFD7, #D3FF93);
  53. -webkit-border-radius:10px;
  54. -moz-border-radius:10px;
  55. border-radius:10px;
  56. -moz-box-shadow:1px 1px 2px hsla(0, 0%, 0%, 0.3);
  57. -webkit-box-shadow:1px 1px 2px hsla(0, 0%, 0%, 0.3);
  58. box-shadow:1px 1px 2px hsla(0, 0%, 0%, 0.3);
  59. }
  60. .triangle-isosceles:hover{
  61. top:-2px;
  62. left:-2px;
  63. -moz-box-shadow:3px 3px 2px hsla(0, 0%, 0%, 0.3);
  64. -webkit-box-shadow:3px 3px 2px hsla(0, 0%, 0%, 0.3);
  65. box-shadow:3px 3px 2x hsla(0, 0%, 0%, 0.3);
  66. }
  67. .triangle-isosceles.top {
  68. background:-webkit-gradient(linear, 0 0, 0 100%, from(#D3FF93), to(#EFFFD7));
  69. background:-moz-linear-gradient(#D3FF93, #EFFFD7);
  70. background:-o-linear-gradient(#D3FF93, #EFFFD7);
  71. background:linear-gradient(#D3FF93, #EFFFD7);
  72. }
  73. .triangle-isosceles:after {
  74. content:"";
  75. position:absolute;
  76. bottom:-9px;
  77. left:15px;
  78. border-width:9px 21px 0;
  79. border-style:solid;
  80. border-color:#D3FF93 transparent;
  81. display:block;
  82. width:0;
  83. }
  84. .triangle-isosceles.top:after {
  85. top:-9px;
  86. left:15px;
  87. bottom:auto;
  88. border-width:0 9px 9px;
  89. border-color:#D3FF93 transparent;
  90. }
  91. .speech_item img{
  92. max-height: 300px;
  93. display: block;
  94. margin-top: 5px;
  95. margin-bottom: 10px;
  96. }
  97. .user_icon
  98. {
  99. float:left;border:1px solid #DDDDDD;padding:2px;margin:0 5px 0 5px;
  100. }
  101. .cp
  102. {
  103. color:#888888;
  104. text-align:center;
  105. font-size:11px;
  106. }
  107. .thumbnail
  108. {
  109. border:1px solid #CCCCCC;
  110. }
  111. #sinaEmotion .item{
  112. margin: 2px;
  113. height: 25px;
  114. }
  115. #sinaEmotion .face{
  116. padding: 1px 2px;
  117. height: 25px;
  118. }
  119. img.sina-emotion{
  120. display: inline;
  121. }