Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Press+Start+2P);
  2.  
  3. * {
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. }
  8.  
  9. html, body {
  10. width: 100%;
  11. height: 100%;
  12. margin-bottom: 10px;
  13. overflow: hidden;
  14. font-family: 'Press Start 2P';
  15. }
  16.  
  17. #custom_html{
  18. width:315px;
  19. height:450px;
  20. }
  21.  
  22. #log {
  23. font: {font_size} 'Press Start 2P';
  24. position: absolute;
  25. bottom: 0;
  26. left: 0;
  27. width: 100%;
  28. color: {text_color};
  29. }
  30.  
  31. #log > div {
  32. -webkit-animation: fadeOut 1s ease {message_hide_delay} forwards;
  33. animation: fadeOut 1s ease {message_hide_delay} forwards;
  34. word-wrap: break-word;
  35. }
  36.  
  37. #log > div.deleted {
  38. visibility: hidden;
  39. }
  40.  
  41. #log .emote {
  42. background-repeat: no-repeat;
  43. background-position: center;
  44. background-size: contain;
  45. position: relative;
  46. }
  47.  
  48. #log .emote > img {
  49. display: inline-block;
  50. height: 1em;
  51. opacity: 0;
  52. }
  53.  
  54. #alert-symbol {
  55. width: 56px;
  56. height: 72px;
  57. line-height: 72px;
  58. text-align: center;
  59. background: #57e5c0 url("https://uploads.twitchalerts.com/000/090/839/493/chat-icon.png") center center no-repeat;
  60. clip-path: polygon(0px 22px, 28px 0px, 56px 22px, 52px 36px, 56px 50px, 28px 72px, 0px 50px, 4px 36px, 0px 22px);
  61. margin: 0 auto;
  62. position: relative;
  63. top: 0;
  64. left: 0;
  65. color: #155041;
  66. vertical-align: middle;
  67. font-size: 40px;
  68. font-weight: bold;
  69. animation: AlertIcon 4s cubic-bezier(.5,.29,0,1.43);
  70. z-index: 999999;
  71. }
  72.  
  73. #chat-decoration {
  74. border-top: 9px solid #483483;
  75. margin: 0 auto;
  76. z-index: 1;
  77. box-shadow: 1px 18px 12px 2px rgba(21,68,138,.4);
  78. }
  79.  
  80. #chat-decoration:before {
  81. content: "#CYBERPSYPUNK.TXT";
  82. position: absolute;
  83. top: 6;
  84. margin-top:4px;
  85. padding-left:20px;
  86. margin-left: 8px;
  87. color: #f5ffb3;
  88. font-size:14px;
  89. background: url('https://i.imgur.com/CmSP4Ix.png') left center no-repeat;
  90. background-position-y:-1px;
  91. }
  92.  
  93. #wrapper {
  94. background-color: rgba(42, 30, 76, 0.3);
  95. width:100%;
  96. height: 100%;
  97. overflow: hidden;
  98. position: relative;
  99. }
  100.  
  101.  
  102.  
  103. #log {
  104. margin: 0;
  105. padding: 0 10px 10px 10px;
  106. overflow: hidden;
  107. }
  108.  
  109. #log > div {
  110. display: -webkit-box;
  111. display: -ms-flexbox;
  112. display: flex;
  113. -webkit-box-align: start;
  114. -ms-flex-align: start;
  115. align-items: flex-start;
  116. -webkit-animation: fadeInUp 500ms ease, fadeOutUp 1s ease {message_hide_delay} forwards;
  117. animation: fadeInUp 500ms ease, fadeOutUp 1s ease {message_hide_delay} forwards;
  118. }
  119.  
  120. .name {
  121. margin-top: 10px;
  122. color: #deff00 !important;
  123. font-family: 'Press Start 2P';
  124. text-shadow: 1px 1px 0 #2a1e4c, -1px 1px 0 #2a1e4c, 1px -1px 0 #2a1e4c, -1px -1px 0 #2a1e4c, 0px 1px 0 #2a1e4c, 0px -1px 0 #2a1e4c, -1px 0px 0 #2a1e4c, 1px 0px 0 #2a1e4c, 2px 2px 0 #2a1e4c, -2px 2px 0 #2a1e4c, 2px -2px 0 #2a1e4c, -2px -2px 0 #2a1e4c, 0px 2px 0 #2a1e4c, 0px -2px 0 #2a1e4c, -2px 0px 0 #2a1e4c, 2px 0px 0 #2a1e4c, 1px 2px 0 #2a1e4c, -1px 2px 0 #2a1e4c, 1px -2px 0 #2a1e4c, -1px -2px 0 #2a1e4c, 2px 1px 0 #2a1e4c, -2px 1px 0 #2a1e4c, 2px -1px 0 #2a1e4c, -2px -1px 0 #2a1e4c; }
  125.  
  126. .message {
  127. color: #b5adff;
  128. font-weight: regular;
  129. font-family: 'Press Start 2P';
  130. text-shadow: 1px 1px 0 #2a1e4c, -1px 1px 0 #2a1e4c, 1px -1px 0 #2a1e4c, -1px -1px 0 #2a1e4c, 0px 1px 0 #2a1e4c, 0px -1px 0 #2a1e4c, -1px 0px 0 #2a1e4c, 1px 0px 0 #2a1e4c, 2px 2px 0 #2a1e4c, -2px 2px 0 #2a1e4c, 2px -2px 0 #2a1e4c, -2px -2px 0 #2a1e4c, 0px 2px 0 #2a1e4c, 0px -2px 0 #2a1e4c, -2px 0px 0 #2a1e4c, 2px 0px 0 #2a1e4c, 1px 2px 0 #2a1e4c, -1px 2px 0 #2a1e4c, 1px -2px 0 #2a1e4c, -1px -2px 0 #2a1e4c, 2px 1px 0 #2a1e4c, -2px 1px 0 #2a1e4c, 2px -1px 0 #2a1e4c, -2px -1px 0 #2a1e4c; }
  131. }
  132.  
  133. .meta {
  134. display: block;
  135. font-weight: bold;
  136. width: 100%;
  137. text-align: left;
  138. padding-right: 8px;
  139. font-weight: bold;
  140. margin-top: 10px;
  141. }
  142.  
  143. .message {
  144. display: block;
  145. }
  146.  
  147. .badges {
  148. float: right;
  149. margin-left: 5px;
  150. margin-top: 10px;
  151. }
  152.  
  153. .badge {
  154. margin-left: 5px;
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement