Advertisement
sonervousgirl

Qasala

Jun 6th, 2021
1,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.95 KB | None | 0 0
  1. /*
  2. --CSS Variables--
  3.  
  4. When making a new theme, modify the variables here, not the CSS below it!
  5. */
  6.  
  7. :root {    
  8.     --clock-bg: #0047B2;
  9.     --clock-txt: #fff;
  10.     --usertxt-color: #fff;
  11.     --userlink-color: #fff;
  12.     --top-header-bg: url("https://images.neopets.com/t/qas/hdr.gif");
  13.     --side-bg-img: url("https://images.neopets.com/t/qas/ms.gif");
  14.     --rotating-img-on: url("https://images.neopets.com/t/qas/7.gif");
  15.     --rotating-img-off: url("https://images.neopets.com/t/qas/1.gif");
  16.     --rotating-img-off: url("https://images.neopets.com/t/qas/2.gif");
  17.     --rotating-img-off: url("https://images.neopets.com/t/qas/3.gif");
  18.     --rotating-img-off: url("https://images.neopets.com/t/qas/4.gif");
  19.     --rotating-img-off: url("https://images.neopets.com/t/qas/5.gif");
  20.     --rotating-img-off: url("https://images.neopets.com/t/qas/6.gif");
  21.     --rotating-img-off: url("https://images.neopets.com/t/qas/8.gif");
  22.     --battle-accept-img: url("https://images.neopets.com/t/qas/events/battle_accept.gif");
  23.     --battle-challenge-img: url("https://images.neopets.com/t/qas/events/battle_challenge.gif");
  24.     --battle-reject-img: url("https://images.neopets.com/t/qas/events/battle_reject.gif");
  25.     --friend-accept-img: url("https://images.neopets.com/t/qas/events/friend_accept.gif");
  26.     --friend-req-img: url("https://images.neopets.com/t/qas/events/friend_request.gif");
  27.     --game-accept-img: url("https://images.neopets.com/t/qas/events/game_accept.gif");
  28.     --game-challenge-img: url("https://images.neopets.com/t/qas/events/game_challenge.gif");
  29.     --game-result-img: url("https://images.neopets.com/t/qas/events/game_result.gif");
  30.     --item-img: url("https://images.neopets.com/t/qas/events/item.gif");
  31.     --neomail-img: url("https://images.neopets.com/t/qas/events/neomail.gif");
  32.     --trade-accept-img: url("https://images.neopets.com/t/qas/events/trade_accept.gif");
  33.     --trade-offer-img: url("https://images.neopets.com/t/qas/events/trade_offer.gif");
  34.     --trade-reject-img: url("https://images.neopets.com/t/qas/events/trade_reject.gif");
  35.     --trade-withdraw-img: url("https://images.neopets.com/t/qas/events/trade_withdraw.gif");
  36.     --warning-img: url("https://images.neopets.com/t/qas/events/warning.gif");
  37. }
  38.  
  39.  
  40.  
  41. .tl{
  42.     color: var(--usertxt-color);  
  43. }
  44.  
  45. body > table:nth-child(3) > tbody > tr > td:nth-child(2) > img, body > table:nth-child(3) > tbody > tr > td:nth-child(1) > img {
  46.     display:none;    
  47. }
  48.  
  49. body {
  50.     background: var(--body-bg-img);
  51.     background-repeat: repeat;
  52.     background-size: 425px 425px;    
  53. }
  54.  
  55. map {
  56.     z-index:-1!important;
  57. }
  58.  
  59. #nst {
  60.     background: var(--clock-bg)!important;
  61.     color: var(--clock-txt)!important;    
  62. }
  63.  
  64. .tt > font > a {
  65.     color: var(--userlink-color)!important;    
  66. }
  67.  
  68. .tt > font {
  69.     color: var(--usertxt-color);    
  70. }
  71.  
  72. table[width="728"] {
  73.     background: var(--top-header-bg)!important;    
  74. }
  75.  
  76. body > table:nth-child(3) > tbody > tr {
  77.     height:43px;    
  78. }
  79.  
  80.    
  81.     tr [style*="background-color:#ffce02;"] {
  82.   background: var(--side-bg-img)!important;
  83. }
  84.  
  85. tr [style*="background-color: rgb(255, 206, 2);"] {
  86.   background: var(--side-bg-img)!important;
  87. }
  88.    
  89. tr [style*="background-color:#ffce02;"] > td {
  90.     color:rgba(0,0,0,0);    
  91. }
  92.  
  93. tr [style*="background-color: rgb(255, 206, 2);"] > td {
  94.  
  95.     color:rgba(0,0,0,0);    
  96. }
  97.  
  98. body > table:nth-child(5) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > div > table {
  99.     border-right:0!important;    
  100. }
  101.  
  102. table[style*="ms.gif"] {
  103.     background: var(--sidebar-bottom-bg)!important;
  104. }
  105.  
  106. /*Rotating theme images*/
  107.  
  108. img#mb {
  109.     width:0!important; height:0!important;
  110.     padding-left:130px; /*width of img*/
  111.     padding-top:242px; /*height of img*/    
  112. }
  113.  
  114. img[src*="/images/misc/themes/acp/1.gif"], img[src*="/images/misc/themes/mqa/1.gif"], img[src*="/images/misc/themes/val/1.gif"], img[src*="/images/misc/themes/default/1.gif"], img[src*="/t/1.gif"] {
  115.     background: var(--rotating-img-on) no-repeat center center;    
  116. }
  117.  
  118. /*Event images*/
  119.  
  120. a[href*="processevent"] > img {
  121.     width:0!important; height:0!important;
  122.     padding-left: 50px;
  123.     padding-top: 50px;
  124. }
  125.  
  126.  
  127.  
  128. a[href*="processevent"] > img[src*="battle_accept"] {
  129.     background: var(--battle-accept-img) no-repeat center center;
  130. }
  131.  
  132. a[href*="processevent"] > img[src*="battle_challenge"] {
  133.     background: var(--battle-challenge-img) no-repeat center center;
  134. }
  135.  
  136. a[href*="processevent"] > img[src*="battle_reject"] {
  137.     background: var(--battle-reject-img) no-repeat center center;
  138. }
  139.  
  140. a[href*="processevent"] > img[src*="friend_accept"] {
  141.     background: var(--friend-accept-img) no-repeat center center;
  142. }
  143.  
  144. a[href*="processevent"] > img[src*="friend_request"] {
  145.     background: var(--friend-req-img) no-repeat center center;
  146. }
  147.  
  148. a[href*="processevent"] > img[src*="game_accept"] {
  149.     background: var(--game-accept-img) no-repeat center center;
  150. }
  151.  
  152. a[href*="processevent"] > img[src*="game_challenge"] {
  153.     background: var(--game-challenge-img) no-repeat center center;
  154. }
  155.  
  156. a[href*="processevent"] > img[src*="game_result"] {
  157.     background: var(--game-result-img) no-repeat center center;
  158. }
  159.  
  160. a[href*="processevent"] > img[src*="item"] {
  161.     background: var(--item-img) no-repeat center center;
  162. }
  163.  
  164. a[href*="processevent"] > img[src*="neomail"] {
  165.     background: var(--neomail-img) no-repeat center center;
  166. }
  167.  
  168. a[href*="processevent"] > img[src*="trade_accept"] {
  169.     background: var(--trade-accept-img) no-repeat center center;
  170. }
  171.  
  172. a[href*="processevent"] > img[src*="trade_offer"] {
  173.     background: var(--trade-offer-img) no-repeat center center;
  174. }
  175.  
  176. a[href*="processevent"] > img[src*="trade_reject"] {
  177.     background: var(--trade-reject-img) no-repeat center center;
  178. }
  179.  
  180. a[href*="processevent"] > img[src*="trade_withdraw"] {
  181.     background: var(--trade-withdraw-img) no-repeat center center;
  182. }
  183.  
  184. a[href*="processevent"] > img[src*="warning"] {
  185.     background: var(--warning-img) no-repeat center center;
  186. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement