DryRoastedLemon

My NightDev chat CSS

Mar 27th, 2015
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2.  
  3.   visibility: hidden;
  4.  
  5. }
  6.  
  7. body {
  8.   color: transparent;
  9.   margin: 0px;
  10. }
  11.  
  12. #chat_box {
  13.   -webkit-mask-image: -webkit-gradient(linear, left 20%, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  14. }
  15.  
  16. @-webkit-keyframes Fade {
  17.   0%, 100% {
  18.     opacity: 0;
  19.   }
  20.   5%, 95% {
  21.     opacity: 1;
  22.   }
  23. }
  24.  
  25. .chat_line {
  26.     width: 90%;
  27.     font-size: 14px;
  28.     line-height: 16px;
  29.     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  30.     margin-bottom: 10px;
  31.     padding: 10px;
  32.     background: rgba(0,0,0,0.5);
  33.     border: 2px solid rgba(255,255,255,0.5);
  34.     border-radius: 5px;
  35.     -webkit-animation-name: Fade;
  36.     -webkit-animation-timing-function: linear;
  37.     -webkit-animation-duration: 15s;
  38.     -webkit-animation-fill-mode: both;
  39. }
  40.  
  41. .chat_line .nick {
  42.     font-weight: bold;
  43.     text-transform: capitalize;
  44.     color: rgb(108,217,137) !important;
  45.     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  46. }
  47.  
  48. .chat_line .message {
  49.     color: #fff;
  50.     word-break: normal;
  51.     word-wrap: break-word;
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment