Advertisement
Guest User

BantBCssRevised

a guest
Nov 15th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.71 KB | None | 0 0
  1. /* Basic Full Customizable Cytube CSS - All of the colors are rgb and rgba code, but you can easily use hex, also you may notice various !important's next to some lines, some are REALLY necessary, or the code may not work, some were added just because */
  2.  
  3.  
  4. /* General Configurations, basically whatever that isn't specifically modified will get this properties */
  5. html, body
  6. {
  7. background: #0c0c0c
  8. /* background color, cytube default is white, with this code it becomes black, but you can change to whatever you want */
  9. url("link")
  10. /* You can link wallpaper for your channel too, for google drive ones use a link this (https://googledrive.com/host/x/) x being that code after /d/ and before /edit, for imgur look for links like i.imgur.com/x.png */;
  11. background-size:100%
  12. /* This will make sure your wallpaper fills the screen, at least the width*/;
  13. background-repeat:no-repeat
  14. /* Use this so your wallpaper don't repeat, if you actually want that to happen change it to 'x y', it will fill everything */;
  15. color: #0099FF
  16. /* This changes the font color */;
  17. }
  18.  
  19.  
  20. /* Links - 'a' alone changes the regular link look, a:hover changes how it looks when you hover a link, a:focus changes how it will look after you have pressed it, and a:active will change how it looks after you release before you click something else */
  21. a, a:hover, a:focus, a:active
  22. {
  23. color: #0055ff;
  24. }
  25.  
  26. /* Playlist - This makes the all the playlist items look different */
  27. .queue_entry
  28. {
  29. background-color: rgba(0, 0, 0, 1)
  30. /* With rgba you can use transparency, you just need to put a value between 0 and 1, 0 being completely transparent and 1 being a solid color */;
  31. border-color: #0099ff
  32. /* Color between list items, derp */;
  33. }
  34.  
  35.  
  36. /* Properties of the active item on the playlist */
  37. .queue_active
  38. {
  39. background-color: rgba(0, 85, 255, 1));
  40. border-color: #0099ff
  41. /* None leaves the item with no border at all, depending on the color scheme this may make the item blend too much*/;
  42. }
  43.  
  44. /* Properties of the header of chat, the video title, the playlist footer, all of the divs with .active class, and the open poll menu, you may want to use different colors with some of this items, like chat header being red and video title being blue, in this case you need to remove the wanted div and write it's code aside */
  45. #chatheader, #currenttitle, #plmeta, .active, .poll-menu
  46. {
  47. background-color:#1c1c1c;
  48. color: #0099ff;
  49. border-color: #0099ff;
  50. }
  51.  
  52. /* Divs with the .muted class i.e: closed poll*/
  53. .muted
  54. {
  55. background-color:rgba(0,0,0,0)!important;
  56. color: rgb(255, 255, 255);
  57. border:none;
  58. }
  59.  
  60.  
  61. /* MOTD properties */
  62. #motd
  63. {
  64. font-weight: bold;
  65. text-align: center;
  66. border:none;
  67. }
  68.  
  69. /* Motd wrap, preferably leave it like this, invisible*/
  70. #motdwrap
  71. {
  72. background-color:rgba(0,0,0,0);;
  73. border:none;
  74. }
  75.  
  76.  
  77. /* Footer Configurations */
  78. #footer
  79. {
  80. background:#0c0c0c!important;
  81. color:rgb(255,255,255)!important;
  82. text-align:center;
  83. width:100%;
  84. }
  85.  
  86.  
  87. /* Userlist configurationss */
  88. #userlist
  89. {
  90. background: #1c1c1c;
  91. color: #00ddff;
  92. font-weight:bold;
  93. }
  94.  
  95. /* Chat configurations */
  96. #messagebuffer
  97. {
  98. background-image:linear-gradient(to bottom,
  99. #0c0c0c,
  100. #1c1c1c);
  101. color: white;
  102. }
  103.  
  104. /* Registered Users Nick Color */
  105. .username
  106. {
  107. color: #0099ff!important;
  108. font-weight: bold;
  109. }
  110.  
  111. /* Rank 3 and above Users Nick Color */
  112. .userlist_owner
  113. {
  114. color: #0055ff!important;
  115. }
  116.  
  117. /* Rank 2(mod) Users Nick Color */
  118. .userlist_op {
  119. color: #0088ff!important;
  120. }
  121.  
  122.  
  123. /* Guests Users Nick Color */
  124. .userlist_guest
  125. {
  126. color: !important;
  127. }
  128.  
  129. /* Navigation bar and normal state buttons configurations*/
  130. nav, .navbar, button
  131. {
  132. background-color: rgba(0,0,0,0) !important;
  133. background-image: linear-gradient(to bottom,
  134. #0000cc,
  135. #000033)!important;
  136. background-repeat: repeat-x;
  137. border: none!important;
  138. color:#ffffff!important;
  139. }
  140.  
  141. /* Pressed Button Configurations */
  142. button:active, button:focus
  143. {
  144. background-color: rgba(0,0,0,0)!important;
  145. background-image: linear-gradient(to bottom,
  146. #0055ff,
  147. #0044ff)!important;
  148. background-repeat: repeat-x;
  149. border: none!important;
  150. }
  151.  
  152. /* Hovering Buttons configurations */
  153. button:hover
  154. {
  155. background-color: rgba(0,0,0,0)!important;
  156. background-image: linear-gradient(to bottom,
  157. #0099ff,
  158. #0000ff)!important;
  159. background-repeat: repeat-x;
  160. border: none!important;
  161. color:#ffffff!important;
  162. }
  163.  
  164. /* Chat box configs */
  165. #chatline{
  166. background: #0c0c0c!important;
  167. color:#ffffff !important;
  168.  
  169. }
  170. .ChatImg{
  171. filter: brightness(0%);
  172. }
  173. .ChatImg:hover{
  174. filter: brightness(100%);
  175. }
  176. .redText {
  177. color: #AF0A0F;
  178. font-weight: bold;
  179. font-size: 125%;
  180. }
  181. .blueText{
  182. font-size: 75%;
  183. color: #00FFFF;
  184. }
  185. .cow {
  186. animation: rainbold 1s linear infinite;
  187. color: red;
  188. font-size: 1.5em;
  189. letter-spacing: 0.00em;
  190.  
  191. margin-left: 6px;
  192. text-shadow: -1px 0px orange, -2px 0px yellow, -3px 0px green, -4px 0px blue, -5px 0px indigo, -6px 0px violet;
  193. }
  194. @keyframes rainbold {
  195. 0% {
  196. color: red;
  197. text-shadow: -1px 0px orange, -2px 0px yellow, -3px 0px green, -4px 0px blue, -5px 0px indigo, -6px 0px violet;
  198. }
  199. 14% {
  200. color: orange;
  201. text-shadow: -1px 0px yellow, -2px 0px green, -3px 0px blue, -4px 0px indigo, -5px 0px violet, -6px 0px red;
  202. }
  203. 28% {
  204. color: yellow;
  205. text-shadow: -1px 0px green, -2px 0px blue, -3px 0px indigo, -4px 0px violet, -5px 0px red, -6px 0px orange;
  206. }
  207. 43% {
  208. color: green;
  209. text-shadow: -1px 0px blue, -2px 0px indigo, -3px 0px violet, -4px 0px red, -5px 0px orange, -6px 0px yellow;
  210. }
  211. 57% {
  212. color: blue;
  213. text-shadow: -1px 0px indigo, -2px 0px violet, -3px 0px red, -4px 0px orange, -5px 0px yellow, -6px 0px green;
  214. }
  215. 71% {
  216. color: indigo;
  217. text-shadow: -1px 0px violet, -2px 0px red, -3px 0px orange, -4px 0px yellow, -5px 0px green, -6px 0px blue;
  218. }
  219. 85% {
  220. color: violet;
  221. text-shadow: -1px 0px red, -2px 0px orange, -3px 0px yellow, -4px 0px green, -5px 0px blue, -6px 0px indigo;
  222. }
  223. 100% {
  224. color: red;
  225. text-shadow: -1px 0px orange, -2px 0px yellow, -3px 0px green, -4px 0px blue, -5px 0px indigo, -6px 0px violet;
  226. }
  227. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement