DryRoastedLemon

YTG Chat CSS - First Concept

Sep 27th, 2015
2,447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.23 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2.     display: none;
  3. }
  4.  
  5. body {
  6.     background-color: rgba(0,0,0,0);
  7.     margin: 0;
  8.     overflow: hidden;
  9.     color: #fff !important;
  10.     width: 100%;
  11. }
  12.  
  13. .live-chat-page {
  14.     background: rgba(0,0,0,0);
  15. }
  16.  
  17. .live-chat-widget #comments-scroller {
  18.     border: none;
  19.     -webkit-mask-image: -webkit-gradient(linear, left 20%, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  20. }
  21.  
  22. #live-comments-controls {
  23.     display: none;
  24. }
  25.  
  26. @-webkit-keyframes FadeOut {
  27.   0%, 100% {
  28.     opacity: 0;
  29.   }
  30.   5%, 95% {
  31.     opacity: 1;
  32.   }
  33. }
  34.  
  35. .live-chat-widget .comment {
  36.     width: 90%;
  37.     background: rgba(0,0,0,0.3) !important;
  38.     margin-bottom: 10px;
  39.     border: 2px solid rgba(255,255,255,0.5);
  40.     border-radius: 10px;
  41.     -webkit-animation-name: FadeOut;
  42.     -webkit-animation-timing-function: linear;
  43.     -webkit-animation-duration: 10s;
  44.     -webkit-animation-fill-mode: both;
  45. }
  46.  
  47. .live-chat-widget .accent-bar {
  48.     display: none;
  49. }
  50.  
  51. .live-chat-widget .comment .author a {
  52.     font-size: 1.2em;
  53.     color: #56E8AB !important;
  54.     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  55. }
  56.  
  57. .live-chat-widget .comment-text {
  58.     font-size: 1.2em;
  59.     color: #fff;
  60.     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment