Advertisement
Guest User

OBS Chat CSS樣式

a guest
Jan 14th, 2014
22,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.58 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2.   visibility: hidden;
  3. }
  4.  
  5. body {
  6.     color: transparent;
  7.     margin: 0px 10px auto auto ;
  8. }
  9.  
  10. .chat_line {
  11.     font-family: Arial,Microsoft YaHei; /* 字體 */
  12.     font-size: 16px; /* 字體大小 */
  13. }
  14.  
  15. .chat_line .nick {
  16.     font-weight: bold;
  17.     text-transform: capitalize;
  18.     color: #000;
  19.     text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  20. }
  21.  
  22. .chat_line .message {
  23.     line-height: 1.2em; /* 行高 */
  24.     color: #fff;
  25.     text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement