Advertisement
PhantomGame

Christmas CSS

Apr 9th, 2025
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 10.12 KB | Gaming | 0 0
  1. /* holiday css by thaddeuz (thanks to oranda4040 for helping too!) */
  2. /* Please credit me if you want to redistribute this code as part of your code. */
  3.  
  4. /* Updated 14 December 2024 */
  5.  
  6. :root {
  7.       --div-grey: rgb(0 0 0 / 0%);
  8.       --div-black: rgb(0 0 0 / 0%);
  9.       --accent-color: #a5d8ed;
  10.       --blue: #a5d8ed;
  11.       --green: #a5edb2;
  12.       --red: #eda5a5;
  13.   }
  14.    
  15.      /* fonts */
  16.  
  17. @font-face {
  18.       font-family: gamefont;
  19.       src: url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2);
  20. }
  21.  
  22.      /* removal */
  23. #instructions,
  24. #mainLogoFace,
  25. #tlInfHold,
  26. .menuSocialB,
  27. #aHolder,
  28. .endAHolder,
  29. #topRightAdHolder,
  30. #seasonLabel,
  31. #termsInfo,
  32. #streamContainer,
  33. #editorBtnM, #timerIcon,
  34. #bottomLeftClassImg,
  35. #bottomLeftTeamHolder,
  36. #bottomLeftChallIcon,
  37. #bottomLeftHealth,
  38. #voiceIcon,
  39. #recTimer,
  40. #ammoMax,
  41. #ammoIcon,
  42. .weapKey,
  43. .weapSkin,
  44. #menuClassSubtext,
  45. #menuClassName,
  46. #menuClassIcn,
  47. #customizeButton .material-icons,
  48. .menuItem .menuItemTitle,
  49. #chatSwitch,
  50. #mapInfoHld, #matchInfo.topLeftOld {
  51.       display: none !important;
  52.   }
  53.  
  54.   /* menu css */
  55.  
  56.      /* bottom */
  57.  
  58. #subLogoButtons {
  59.       bottom: 90px;
  60.       text-shadow: 2px 2px 3px rgba(30, 30, 30, .5);
  61. }
  62.  
  63. .button, .button:hover {
  64.       background-color: transparent !important;
  65.       border: hidden ! important;
  66. }
  67.  
  68. #subLogoButtons>.button {
  69.       background-color: #00000000 !important;
  70.       border: hidden ! important;
  71. }
  72.  
  73.       /* spectate cred oranda4040 */
  74.  
  75. #uiBase.onMenu #spectButton {
  76.     z-index: 0;
  77.     width: 48px;
  78.     top: 51%;
  79.     transform: translate(-50%, -50%)
  80. }
  81.  
  82. #spectButton span[style="font-size:15px;color:rgba(255,255,255,.6)"] {
  83.     color: transparent !important;
  84.     font-size: 0px
  85. }
  86.  
  87. #spectButton .switchsml {
  88.     margin: 0;
  89.     position: absolute;
  90.     width: 100%
  91. }
  92.  
  93. .sliderSml {
  94.     opacity: 1
  95. }
  96.  
  97. .sliderSml::before {
  98.     content: "Spectate";
  99.     font-size: 20px;
  100.     color: white;
  101.     width: max-content;
  102.     height: auto;
  103.     background-color: transparent;
  104.     text-align: center;
  105.     transition-duration: 0.25s
  106. }
  107.  
  108. .sliderSml::before {
  109.     content: "play_arrow";
  110.     font-size: 35px;
  111.     color: white;
  112.     width: max-content;
  113.     height: auto;
  114.     background-color: transparent;
  115.     text-align: center;
  116.     transition-duration: 0.25s;
  117.     font-family: 'Material Icons';
  118.     text-shadow: var(--text-shadow)
  119. }
  120.  
  121. input:checked+.sliderSml::before {
  122.     content: "visibility";
  123.     color: white;
  124.     transform: unset
  125. }
  126.  
  127. input:checked+.sliderSml {
  128.     background-color: transparent !important
  129. }
  130.  
  131. .sliderSml {
  132.     opacity: 1;
  133.     background-color: transparent
  134. }
  135.  
  136.      /* top left */
  137.  
  138. #mLevelCont,
  139.     .headerBarLeft,
  140.     .headerBarRight {
  141.     background-color: transparent
  142. }
  143.  
  144. #menuAccountUsername {
  145.     font-size  : 23px;
  146.     padding-top: 4px;
  147.     padding-left: 6px
  148. }
  149.  
  150. .verticalSeparator {
  151.     opacity:0
  152. }
  153.  
  154. .progressBar {
  155.     height: 9px;
  156.     margin-top: -4px;
  157.     background-color: rgba(0, 0, 0, 0.15);
  158.     border-radius: 999px
  159. }
  160.  
  161. .progressBarInner {
  162.     background-image: linear-gradient(to right,#a5d8ed, white);
  163.     border-radius: 999px
  164. }
  165.  
  166. #mailContainer {  
  167.     padding-bottom: 4px
  168. }
  169.  
  170. #mLevelContV {
  171.     font-size  : 60px
  172. }
  173.  
  174. .krInfo {
  175.     font-size: 18px !important;
  176.     position : fixed;
  177.     top      : 89px;
  178.     left     : 20px
  179. }
  180.  
  181. .junkInfo {
  182.     font-size: 18px !important;
  183.     position : fixed;
  184.     top      : 94px;
  185.     left     : 140px
  186. }
  187.  
  188.      /* left cred Sakura Theme v1.0.0 */
  189.  
  190. .material-icons-outlined, span.material-symbols-outlined {
  191.     color: #fff !important
  192. }
  193.  
  194. #menuItemContainer {
  195.     margin-left: -25px;
  196.     bottom: unset;
  197.     display: flex;
  198.     flex-direction: column;
  199.     top: 100px;
  200.     background: transparent;
  201. }
  202.  
  203. .menuItem {
  204.     height: 84px;
  205.     width: 84px;
  206.     margin-left: 40px;
  207.     margin-top: 12px;
  208.     margin-bottom: 10px;
  209.     background: var(--accent-color);
  210.     border-radius: 999px;
  211.     border-right: 0px solid var(--border-color);
  212.     display: block;
  213.     position: relative;
  214. }
  215.  
  216. .menuItem:hover {
  217.     width: 200px;
  218. }
  219.  
  220. .menuItem .material-icons-outlined {
  221.     position: absolute;
  222.     top: 50%;
  223.     left: calc(100% - 41.5px);
  224.     transform: translate(-50%, -50%);
  225. }
  226.  
  227. .menuItem .menuItemTitle {
  228.     margin-top: unset;
  229.     position: absolute;
  230.     top: 50%;
  231.     left: calc(0%);
  232.     transform: translate(-50%, -50%);
  233.     font-size: 20px !important;
  234.     opacity: 0;
  235. }
  236.  
  237. .menuItem:hover .menBtnIcn {
  238.     position: absolute;
  239.     top: 50%;
  240.     left: calc(100% - 100px);
  241.     transition: unset;
  242.     transform: translate(-50%, -50%);
  243.     color: #ffd1d1 !important
  244. }
  245.  
  246.      /* hud class popup */
  247.  
  248. #menuClassContainer:hover #classPreviewCanvas {
  249.     transform: unset !important;
  250. }
  251.  
  252. #classPreviewCanvas {
  253.     transform: translateY(500000px);
  254.     margin-bottom: -135px;
  255.     margin-right: -113px
  256. }
  257.  
  258. .bigShadowT {
  259.     text-shadow: none !important
  260. }
  261.  
  262.      /* ammo */
  263.  
  264. #ammoHolder {
  265.     position: fixed;
  266.     top: calc(50% + 35px);
  267.     left: calc(50% - 30px);
  268.     transform: unset;
  269.     height: 7px;
  270.     width: 60px;
  271.     background-color: transparent!important;
  272.     background-image: linear-gradient(to right,rgb(255 255 255),rgb(255 255 255))
  273. }
  274.  
  275. #ammoVal {
  276.     font-size: 50px;
  277.     position: fixed;
  278.     right: calc(0% - -42px);
  279.     bottom: 30px;
  280.     text-shadow: 1px 1px 3px #a5d8ed
  281. }
  282.  
  283.      /* weap */
  284.  
  285. .weapItem {
  286.     transition-duration: 0.25s;
  287.     filter: drop-shadow(0.5px 0.5px 2px #a9caeab8);
  288.     height: 0;
  289.     opacity: 0 !important;
  290.     background-color: transparent;
  291. }
  292.  
  293. .weapItemInner {
  294.     background-color: transparent
  295. }
  296.  
  297. .weapIcon {
  298.     height: 50%;
  299.     width: 50%;
  300. }
  301.  
  302. .weapItem[style*="1"] {
  303.     opacity: 1 !important;
  304.     height: 80px;
  305. }
  306.  
  307. .weapKey,.weapSkin, .weapStreakHolder, .weapStreakInner {
  308.     display: none !important;
  309. }
  310.    
  311.      /* health bar */
  312.  
  313. #bottomLeftHealthBar {
  314.     width: 340px;
  315.     position: fixed;
  316.     left: calc(0% + 19px);
  317.     bottom: calc(0% + 20px);
  318. }
  319.  
  320. .nHealthBarSeg {
  321.     display: flex;
  322.     height: 31px;
  323.     width: -webkit-fill-available;
  324.     margin: 0 -3.88px;
  325.     background:transparent
  326. }
  327.  
  328. .nHpBSeg {
  329.     border-radius: 3.5px
  330. }
  331.  
  332. #bottomLeftHealthBar::after {
  333.     content: " ";
  334.     background: url(https://indiciashop.com/thaddeuz/wp-content/uploads/2024/12/image-1-1.png);
  335.     background-size: 374px;
  336.     width: 374px;
  337.     height: 200px;
  338.     position: fixed;
  339.     bottom: -67px;
  340.     left:10.5px;
  341.     z-index:-999;
  342. }
  343.  
  344.      /* timer */
  345.  
  346. #timerVal.topLeftOld {
  347.     font-size: 40px!important;
  348.     text-shadow: 1px 1px 3px #ffa0a0!important;
  349. }
  350.  
  351.      /* counters */
  352.  
  353. #killsVal,#deathsVal,#streakVal,#myScoreVal,#kdVal {
  354.     color: white;
  355.     font-size: 30px;
  356.     text-shadow: 1px 1px 3px #ffa0a0!important;
  357. }
  358.  
  359. #killsIcon,#deathsIcon,#streakIcon,#kdIcon {
  360.     width: 26px;
  361.     height: 26px;
  362. }
  363.  
  364.      /* fps and ping */
  365.  
  366. #ingameFPS,#fpsDisplay {
  367.     margin-top: 20px
  368. }
  369.  
  370. #menuFPSDisplay,#menuFPS,#ingameFPS,#fpsDisplay,
  371. #menuPingText,#menuPingDisplay .material-icons,#pingDisplay,#pingText {
  372.     color: white !important;
  373.     text-shadow: 1px 1px  3px  #a9caeaa1;
  374. }
  375.  
  376.      /* chat */
  377.  
  378. #chatInput {
  379.     font-size: 18px;
  380.     position:absolute;
  381.     left:0px;
  382.     background-color: rgb(255 255 255 / 0%);
  383.     border: 0px solid rgb(255 255 255 / 0%);
  384. }
  385.  
  386. #chatList {
  387.     background-color: rgba(0, 0, 0, 0);
  388. }
  389.  
  390. .chatItem {
  391.     font-size: 18px;
  392.     max-width: 265px;
  393.     text-shadow: 2px 2px 3px rgba(30, 30, 30, .5);
  394. }
  395.    
  396. .chatItem span[style="color:#fc03ec"] {
  397.     color: #a5d8ed !important;
  398. }
  399.  
  400. #uiBase.onMenu #chatHolder {
  401.     left: 120px
  402. }
  403.  
  404. #uiBase.onCompMenu #chatHolder {
  405.     left: 120px
  406. }
  407.  
  408. #uiBase.onGame #chatHolder {
  409.     left: 18px;
  410.     bottom: 80px
  411. }
  412.  
  413.      /* settings - thanks jitchu for the help! */
  414.  
  415. #itemSearchH,#selectorContainer,.classCard,.skinCard {
  416.     background-color: transparent;
  417.     border-radius: 0px;
  418. }
  419.  
  420. .setSugBox2 {
  421.     border: 4px solid rgb(255 255 255 / 100%);
  422. }
  423.  
  424. .settName,.settNameSmall {
  425.     color: white !important;
  426. }
  427.  
  428. #menuWindow.dark,
  429. .settingsHeader,
  430. .settingsBtn{
  431.     background-color: black;
  432. }
  433.  
  434. input[type=color],
  435. .setHed {
  436.     border: 4px solid rgba(219 105 105);
  437.     background-color: black;
  438. }
  439.  
  440. input:checked+.slider {
  441.     background-color: #a5d8ed;
  442.     box-shadow: 0px 0px 30px 1px #a5d8ed;
  443. }
  444.  
  445. .slider:before {
  446.     width: 0px;
  447. }
  448.  
  449. .switch {
  450.     width: 30px;
  451.     height: 34px;
  452. }
  453.  
  454. .slider {
  455.     border-radius: 999px;
  456. }
  457.  
  458.      /* logo */
  459.  
  460. #mainLogo {
  461.     width: 1050px;
  462.     height: 350px;
  463.     content: url(https://indiciashop.com/thaddeuz/wp-content/uploads/2024/12/New_Project_10.png)
  464. }
  465.  
  466.      /* snow */
  467.  
  468. #instructionHolder{
  469.     background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st1%7Bopacity:0.7%3Bfill:%23FFFFFF%3B%7D.st3%7Bopacity:0.03%3Bfill:%23FFFFFF%3B%7D%3C/style%3E%3Ccircle class='st3' cx='4' cy='14' r='1'/%3E%3Ccircle class='st3' cx='43' cy='3' r='1'/%3E%3Ccircle class='st3' cx='31' cy='30' r='2'/%3E%3Ccircle class='st3' cx='19' cy='23' r='1'/%3E%3Ccircle class='st3' cx='37' cy='22' r='1'/%3E%3Ccircle class='st3' cx='43' cy='16' r='1'/%3E%3Ccircle class='st3' cx='8' cy='45' r='1'/%3E%3Ccircle class='st3' cx='29' cy='39' r='1'/%3E%3Ccircle class='st3' cx='13' cy='37' r='1'/%3E%3Ccircle class='st3' cx='47' cy='32' r='1'/%3E%3Ccircle class='st3' cx='15' cy='4' r='2'/%3E%3Ccircle class='st3' cx='9' cy='27' r='1'/%3E%3Ccircle class='st3' cx='30' cy='9' r='1'/%3E%3Ccircle class='st3' cx='25' cy='15' r='1'/%3E%3Ccircle class='st3' cx='21' cy='45' r='2'/%3E%3Ccircle class='st3' cx='42' cy='45' r='1'/%3E%3C/svg%3E");
  470.     background-position: 0px 0px;
  471.     animation: animatedBackground 1000s linear infinite;
  472.     opacity:0.7;
  473. }
  474.  
  475. @keyframes animatedBackground {
  476.     0% {
  477.       background-position: 0 0;
  478.     }
  479.     100% {
  480.       background-position: 0px 320000px;
  481.        
  482.     }
Tags: Krunker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement