css.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. @CHARSET "UTF-8";
  2. body {
  3. /* padding-top: 40px; */
  4. /* padding-bottom: 40px; */
  5. /* background-color: #eee; */
  6. font-size: 12px;
  7. font-family: "微软雅黑";
  8. }
  9. a {
  10. font-size: 12px;
  11. font-family: "微软雅黑";
  12. }
  13. a:hover {
  14. font-size: 12px;
  15. font-family: "微软雅黑";
  16. text-decoration: none;
  17. }
  18. a:link {
  19. font-size: 12px;
  20. font-family: "微软雅黑";
  21. text-decoration: none;
  22. }
  23. a:active {
  24. font-size: 12px;
  25. font-family: "微软雅黑";
  26. text-decoration: none;
  27. }
  28. .mininav {
  29. background-attachment: scroll;
  30. background-clip: border-box;
  31. background-color: rgba(0, 0, 0, 0);
  32. background-image: url("/pages/img/mininavBg.jpg");
  33. background-origin: padding-box;
  34. background-position: 0 0;
  35. background-repeat: repeat-x;
  36. background-size: auto auto;
  37. height: 30px;
  38. margin-top: 0px;
  39. padding-top: 0px;
  40. }
  41. .form-signin {
  42. max-width: 330px;
  43. padding: 15px;
  44. margin: 0 auto;
  45. }
  46. .form-signin .form-signin-heading, .form-signin .checkbox {
  47. margin-bottom: 10px;
  48. }
  49. .form-signin .checkbox {
  50. font-weight: normal;
  51. }
  52. .form-signin .form-control {
  53. position: relative;
  54. height: auto;
  55. -webkit-box-sizing: border-box;
  56. -moz-box-sizing: border-box;
  57. box-sizing: border-box;
  58. padding: 10px;
  59. font-size: 16px;
  60. }
  61. .form-signin .form-control:focus {
  62. z-index: 2;
  63. }
  64. .form-signin input[type="email"] {
  65. margin-bottom: -1px;
  66. border-bottom-right-radius: 0;
  67. border-bottom-left-radius: 0;
  68. }
  69. .form-signin input[type="password"] {
  70. margin-bottom: 10px;
  71. border-top-left-radius: 0;
  72. border-top-right-radius: 0;
  73. }
  74. .emojl-panel {
  75. position: absolute;
  76. top: 355px;
  77. left: 0px;
  78. width: 370px;
  79. height: 200px;
  80. background-color: #dddddd;
  81. border: 1px solid #EEEEEE;
  82. z-index: 1056;
  83. -webkit-border-radius: 5px;
  84. -moz-border-radius: 5px;
  85. border-radius: 5px;
  86. box-shadow: 1px 1px 5px #000;
  87. padding: 5px;
  88. }
  89. /*
  90. .btn {
  91. display: block;
  92. position: relative;
  93. border: 1px solid;
  94. -webkit-border-radius: 5px;
  95. -moz-border-radius: 5px;
  96. border-radius: 5px;
  97. padding: .75em 12px;
  98. width: 100%;
  99. font-family: '微软雅黑', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  100. font-size: 16px;
  101. }
  102. */
  103. .btn_face {
  104. padding: 5px;
  105. }
  106. .chat_toolbar .btn_img {
  107. width: 30px;
  108. height: 30px;
  109. }
  110. .btn_face .btn_img {
  111. background: url(/img/chat_bottombar_icon_face.png);
  112. }
  113. .btn_img {
  114. margin: 0 4px;
  115. background-size: 100% 100% !important;
  116. }
  117. .btn_img, .btn_small .btn_img {
  118. display: block;
  119. width: 20px;
  120. height: 20px;
  121. }
  122. /*----------分割线----------*/
  123. .chat_content_group {
  124. padding: 10px
  125. }
  126. .chat_content_avatar {
  127. float: left;
  128. width: 40px;
  129. height: 40px;
  130. margin-right: 10px
  131. }
  132. .chat_nick {
  133. font-size: 14px;
  134. margin: 0 0 10px
  135. }
  136. .chat_content {
  137. display: inline-block;
  138. min-height: 16px;
  139. max-width: 50%;
  140. background: #97c94c;
  141. background: -webkit-gradient(linear, left top, left bottom, from(#cf9),
  142. to(#9c3));
  143. background: -webkit-linear-gradient(#cf9, #9c3);
  144. background: -moz-linear-gradient(#cf9, #9c3);
  145. background: -ms-linear-gradient(#cf9, #9c3);
  146. background: -o-linear-gradient(#cf9, #9c3);
  147. background: linear-gradient(#cf9, #9c3);
  148. -webkit-border-radius: 5px;
  149. -moz-border-radius: 5px;
  150. border-radius: 5px;
  151. padding: 10px 15px;
  152. word-break: break-all;
  153. box-shadow: 1px 1px 5px #000;
  154. line-height: 1.4
  155. }
  156. .chat_content_group.buddy {
  157. text-align: left
  158. }
  159. .chat_content_group.self {
  160. text-align: right
  161. }
  162. .chat_content_group.self>.chat_content {
  163. background: #fff;
  164. background: -webkit-gradient(linear, left top, left bottom, from(white, #e1e1e1));
  165. background: -webkit-linear-gradient(white, #e1e1e1);
  166. background: -moz-linear-gradient(white, #e1e1e1);
  167. background: -ms-linear-gradient(white, #e1e1e1);
  168. background: -o-linear-gradient(white, #e1e1e1);
  169. background: linear-gradient(#fff, #e1e1e1)
  170. }
  171. .chat_content_group.self>.chat_content_avatar {
  172. float: right;
  173. margin: 0 0 0 10px
  174. }
  175. .chat_content_group.self>.chat_nick {
  176. text-align: right
  177. }
  178. .chat_content_group.self>.chat_content {
  179. text-align: left
  180. }
  181. .chat_content_group.system>.chat_content {
  182. max-width: 100%;
  183. background: #f6fabb;
  184. background: -webkit-linear-gradient(#f6fabb, #fdf98d);
  185. background: -moz-linear-gradient(#f6fabb, #fdf98d);
  186. background: -ms-linear-gradient(#f6fabb, #fdf98d);
  187. background: -o-linear-gradient(#f6fabb, #fdf98d);
  188. background: linear-gradient(#f6fabb, #fdf98d)
  189. }
  190. .chat_content_group.system {
  191. text-align: left !important
  192. }
  193. .chat_content .icon {
  194. width: 20px;
  195. height: 20px;
  196. float: left;
  197. background-image: url(../img/tips_icon.png)
  198. }
  199. .chat_content .icon_info {
  200. background-position: -60px 0
  201. }
  202. .chat_content .icon_err {
  203. background-position: -20px 0
  204. }
  205. .chat_content .icon_succ {
  206. background-position: -40px 0
  207. }
  208. .container_box {
  209. border: 1px solid #d9dadc;
  210. background-color: #fff;
  211. }
  212. .container_box_bd {
  213. padding-bottom: 30px;
  214. padding: 60px 135px;
  215. }
  216. label {
  217. font-weight: normal;
  218. }
  219. label.error {
  220. padding-top: 5px;
  221. font-weight: normal;
  222. color: #EA5200;
  223. }
  224. .media-heading {
  225. font-family: "微软雅黑";
  226. font-size: 14px;
  227. }
  228. .media-main {
  229. padding: 8px;
  230. border-bottom: 1px solid #ddd;
  231. }
  232. .media-avatar {
  233. cursor: pointer;
  234. margin-right: 10px;
  235. }
  236. .media-desc {
  237. font-family: "微软雅黑";
  238. font-size: 12px;
  239. color: gray;
  240. white-space: nowrap;
  241. overflow: hidden;
  242. text-overflow: ellipsis;
  243. width: 260px;
  244. white-space: nowrap;
  245. }
  246. /* tab color */
  247. .nav-tabs>li>a {
  248. /* background-color: #333333; */
  249. /* border-color: #777777; */
  250. /* color: #fff; */
  251. }
  252. /* active tab color */
  253. .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus
  254. {
  255. color: #fff;
  256. background-color: #337ab7;
  257. border: 1px solid #337ab7;
  258. border-radius: 0;
  259. }
  260. /* hover tab color */
  261. .nav-tabs>li>a:hover {
  262. /* border-color: #000000; */
  263. /* background-color: #111111; */
  264. }