Advertisement
PhantomGame

Comp CSS

Apr 9th, 2025
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.10 KB | Gaming | 0 0
  1. :root {
  2.     --Watermark: "itserror430";
  3. }
  4. /* Css based off of groot css by 7soff ty man*/
  5. /* Removal */
  6.  
  7. #aHolder,
  8. #topRightAdHolder,
  9. .endAHolder,
  10. #merchImg,
  11. #onetrust-consent-sdk,
  12. #braveWarning,
  13. #newsHolder,
  14. #streamContainer,
  15. #newUserGuide,
  16. #krDiscountAd,
  17. #updateAd,
  18. #editorBtnM,
  19. .verticalSeparator,
  20. .terms.standout,
  21. .verticalSeparatorInline,
  22. .terms,
  23. #termsInfo,
  24. .menuWindowSideL,
  25. .windowHeader,
  26. .menuSocialB,
  27. #menuBtnProfile,
  28. #menuBtnShop,
  29. #menuBtnChall,
  30. #menuBtnSocial,
  31. #policeButton,
  32. #menuBtnMaps,
  33. #menuBtnMods,
  34. #menuBtnSettings,
  35. #mainLogo,
  36. #freeKRAd,
  37. #rankedBlog,
  38. #doubleXPAd,
  39. #seasonLabel,
  40. #menuClassNameTag,
  41. #doubleClassXPAd,
  42. #mainLogoFace,
  43. .menuItem[onclick$="showWindow(49)"],
  44. #tlInfHold,
  45. .newsItem,
  46. #bottomLeftChallIcon,
  47. #timerIcon,
  48. #recTimer,
  49. .weapKey,
  50. .weapSkin,
  51. .weapStreak,
  52. .weapStreakHolder,
  53. #bottomLeftTeamType,
  54. #voiceIcon,
  55. #classPreviewCanvas,
  56. #chatSwitchHolder,
  57. #bottomLeftTeamName,
  58. #menuClassIcn,
  59. #myScoreVal,
  60. #kdVal,
  61. #ammoMax,
  62. #killsIcon,
  63. #ammoIcon,
  64. #deathsIcon,
  65. #streakIcon,
  66. #scoreCount .material-icons,
  67. #livesCount .material-icons,
  68. #reloadMsg {
  69.    display: none !important;
  70. }
  71.  
  72.  
  73. /* Removal V2 */
  74.  
  75. .button,
  76. #menuItemContainer,
  77. #mLevelCont,
  78. #bottomLeftPlayer,
  79. #bottomLeftPlayerLeft,
  80. #bottomLeftPlayerRight,
  81. #bottomLeftTeamType,
  82. #bottomLeftTeamName,
  83. #chatInputHolder,
  84. .greyInner,
  85. .greyInlineInner,
  86. .greyInlineInnerMid,
  87. #mLevelCont,
  88. .headerBarLeft,
  89. .headerBarRight,
  90. .weapItemInner,
  91. .weapItem,
  92. #leaderContainer,
  93. #bottomLeftHealthBar {
  94. background-color: transparent;
  95. }
  96.  
  97. /* Removal V3 */
  98. .button,
  99. .button:hover {
  100. border: hidden ! important;
  101. }
  102.  
  103. /* Removal V4 */
  104.  
  105. #matchInfo {
  106. visibility: hidden !important;
  107. }
  108.  
  109. /* Useless Change */
  110.  
  111. #instructions {
  112. position: absolute;
  113. font-size: 15px;
  114. animation: none;
  115. }
  116.  
  117. /* Game Font */
  118.  
  119. @font-face {
  120. font-family: gamefont;
  121. src: url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2);
  122. }
  123.  
  124.  
  125. /* Weapon */
  126.  
  127. #weapHolder {
  128. display: flex;
  129. bottom: 40%;
  130. transform: translateY(50%);
  131. }
  132.  
  133.  
  134. /* Health */
  135.  
  136.  
  137. #bottomLeftHealthBar {
  138. width: 300px;
  139. height: 33px;
  140. display: inline-flex;
  141. justify-content: center;
  142. background-color: transparent;
  143. border-radius: 1;
  144. position: fixed;
  145. left: calc(50% - 160px);
  146. bottom: 50px;
  147. outline: 9px solid var(--hp-ammo);
  148. filter: drop-shadow(7px 7px 3px rgba(30, 30, 30, .5));
  149. visibility: visible !important;
  150. }
  151.  
  152. .nHealthBarSeg {
  153. width: -webkit-fill-available;
  154. height: 30px;
  155. margin: 0 -5px;
  156. border-radius: 0;
  157. background-color: transparent;
  158. }
  159.  
  160. .nHpBSeg {
  161. border-radius: 0;
  162. box-shadow: none;
  163. }
  164.  
  165.  
  166. #bottomLeftHealth {
  167. color: #fff;
  168. font-size: 125px;
  169. will-change: transform;
  170. display: inline-block;
  171. text-shadow: 7px 7px 3px rgba(30, 30, 30, .5);
  172. letter-spacing: 2px;
  173. visibility: visible !important;
  174. background-color: transparent;
  175. position: fixed;
  176. left: calc(35%);
  177. bottom: 5px;
  178. }
  179.  
  180.  
  181. /* Ammo */
  182.  
  183. #ammoHolder {
  184. position: fixed;
  185. background-color: transparent;
  186. background-image:linear-gradient(to right,white,white);
  187. transform: unset;
  188. width: 35px;
  189. height: 4px;
  190. size: 20px;
  191. top: calc(50% + 25px);
  192. left: calc(49%);
  193.  
  194.  
  195. }
  196.  
  197. #ammoVal {
  198. text-shadow: 7px 7px 3px rgba(30, 30, 30, .5);
  199. position: fixed;
  200. font-size: 125px;
  201. left: calc(57%);
  202. bottom: 5px;
  203. color: white;
  204. letter-spacing: 2px;
  205. }
  206.  
  207. /* Leader */
  208.  
  209. .leaderScore,
  210. .leaderCounter {
  211.     color: white;
  212. }
  213.  
  214. #leaderboardHolder::before {
  215. content: "leaderboard";
  216. text-transform: capitalize;
  217. display: flex;
  218. font-size: 20px;
  219.    color: #fff;
  220. margin-top: 8px;
  221. margin-left: calc(30%);
  222. background-color: transparent;
  223. }
  224. /* Counters */
  225.  
  226. #killsVal,
  227. #deathsVal,
  228. #streakVal {
  229. color: white !important;
  230. bottom: 7px;
  231. font-size: 26px;
  232. display: flex;
  233. justify-content: center;
  234. text-shadow: 2px 2px 3px rgba(30, 30, 30, .5);
  235. border-radius: 5px 5px 5px 5px;
  236. padding: 0px 5px 0px 0px;
  237. }
  238.  
  239.  
  240. #deathsVal::after {
  241. content: 'D';
  242. transform: translateX(25%);
  243. color: gray;  
  244. }
  245.  
  246. #killsVal::after {
  247.    content: 'K';
  248.    transform: translateX(25%);
  249. color: gray;
  250. }
  251.  
  252. #streakVal::after {
  253. content: 'S';
  254. transform: translateX(25%);
  255. color: gray;
  256. }
  257.  
  258. /* Timer */
  259.  
  260. #timerInner.topLeftOld {
  261. background-color: transparent;
  262. }
  263.  
  264. #timerHolder.topLeftOld {
  265. background-color: rgba(0,0,0,.5);
  266. border-radius: 5px 5px 5px 5px;
  267. }
  268.  
  269. #timerVal.topLeftOld {
  270. font-size: 45px !important;
  271. text-shadow: -1px -1px 0 #202020,1px -1px 0 #202020,-1px 1px 0 #202020,1px 1px 0 #202020
  272. }
  273.  
  274.  
  275.  
  276.  
  277. /* Chat */
  278.  
  279. #chatInput {
  280. font-size: 25px;
  281. max-width: 275px;
  282. transform: translateX(-31%);
  283. background-color: transparent;
  284. border: transparent;
  285. }
  286.  
  287.  
  288. .chatItem {
  289. font-size: 15px;
  290. padding-right: 5px;
  291. max-width: 275px;
  292. background-color: transparent;
  293. border: transparent;
  294. }
  295.  
  296. #chatList {
  297. background-color: transparent;
  298. }
  299.  
  300.  
  301. /*Matchinfo*/
  302.  
  303. #matchInfo {
  304. visibility: hidden !important;
  305. }
  306. #matchInfo:after {
  307. font-size:12px;
  308. content: var(--Watermark);
  309. color: #ffffff;
  310. opacity: 100%;
  311. text-shadow: 0 0 2px #000000;
  312. visibility: visible !important;
  313. position: fixed;
  314. top: 100px;
  315. left: calc(1%);
  316. text-shadow: -1px -1px 0 #202020,1px -1px 0 #202020,-1px 1px 0 #202020,1px 1px 0 #202020
  317. }
Tags: Krunker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement