Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 8.26 KB | None | 0 0
  1. * {
  2.     font-family: sans-serif;
  3. }
  4. #menuItemContainer {
  5.     position: absolute !important;
  6.     bottom: 0 !important;
  7.     width: 100% !important;
  8.     flex-direction: inherit !important;
  9.     top: 87% !important;
  10. }
  11. #classPreviewCanvas {
  12.     transform: scale(0.44);
  13. }
  14. #mapInfoHolder {
  15.     position: absolute !important;
  16.     bottom: 14% !important;
  17.     right: 20px !important;
  18.     pointer-events: all !important;
  19.     display: flex !important;
  20.     flex-direction: column !important;
  21.     align-items: flex-end !important;
  22. }
  23. #speedDisplay {
  24.     position: absolute;
  25.     font-size: 27px;
  26.     color: #ff08b1;
  27.     pointer-events: all !important;
  28.     top: 8.64px;
  29.     left: none;
  30.     right: 8px
  31. }
  32. /*
  33. this is the old menu
  34. */
  35.  #chatHolder {
  36.     position: absolute;
  37.     z-index: 1000;
  38.     bottom: 20px;
  39.     top: 57%;
  40.     left: 1% !important;
  41. }
  42. ::-webkit-scrollbar {
  43.     width: 2px;
  44. }
  45. #menuWindow {
  46.     position: absolute;
  47.     left: 50%;
  48.     bottom: 220px;
  49.     border-radius: 6px;
  50.     max-height: calc(100% - 480px);
  51.     transform: translateX(-50%);
  52.     z-index: 2;
  53.     overflow-y: auto;
  54.     display: inline-block;
  55.     text-align: left;
  56.     pointer-events: auto;
  57.     padding: 20px;
  58.     width: 705px;
  59.     font-size: 20px;
  60.     background-color: #191717;
  61.     -webkit-box-shadow: 0 9px 0 0 #a6a6a6;
  62.     -moz-box-shadow: 0 9px 0 0 #a6a6a6;
  63.     box-shadow: 0 9px 0 0 #a6a6a6
  64. }
  65. .settText {
  66.     cursor: pointer;
  67.     color: #2196f3;
  68.     font-size: 22px;
  69.     pointer-events: auto
  70. }
  71.  
  72. #chatList {
  73.     background-color: #1D1F20;
  74.     padding-top: 6px;
  75.     padding-left: 6px;
  76.     padding-right: 6px;
  77.     padding-bottom: 1px;
  78.     pointer-events:all;
  79.     border-radius: 3px;
  80. }
  81. #menuClassContainer {
  82.     position: absolute;
  83.     z-index: 0;
  84.     height: 15%;
  85.     width: 9%;
  86.     display: flex;
  87.     flex-direction: column;
  88.     align-items: center;
  89.     justify-content: center;
  90.     top: 46%;
  91.     left: 45%;
  92.     pointer-events:all !important;
  93. }
  94. #bubbleContainer {
  95.     right: 54% !important;
  96. }
  97. .chatItem {
  98.     max-width: 280px;
  99.     word-wrap: break-word;
  100.     display: block;
  101.     margin-bottom: 10px;
  102.     padding: 5px;
  103.     padding-left: 10px;
  104.     padding-right: 10px;
  105.     border-radius: 4px;
  106.     color: #ff6868;
  107.     font-size: 14px;
  108.     background-color: rgba(31, 8, 8, 0);
  109. }
  110. .chatMsg {
  111.     color: rgba(255, 255, 255, .7);
  112. }
  113. #chatInput {
  114.     width: 100%;
  115.     padding: 5px;
  116.     padding-left: 10px;
  117.     color: #fff;
  118.     font-size: 18px;
  119.     box-sizing: border-box;
  120.     border: none;
  121.     background-color: #1D1F20;
  122.     pointer-events: all;
  123.     display: flex;
  124.     border-radius:3px;
  125. }
  126. #chatInput.onMenu {
  127.     width: 100%;
  128.     padding: 5px;
  129.     padding-left: 10px;
  130.     color: #fff;
  131.     font-size: 18px;
  132.     box-sizing: border-box;
  133.     border: none;
  134.     background-color: rgba(0, 0, 0, 0.44);
  135.     pointer-events: all;
  136.     display: flex;
  137.     border-radius:0px;
  138. }
  139. #subLogoButtons {
  140.     position: absolute;
  141.     bottom: 13%;
  142.     left: 50%;
  143.     transform: translate(-50%, 0);
  144.     pointer-events:all;
  145. }
  146. #killStreakHolder {
  147.     vertical-align: bottom;
  148.     display: list-item;
  149.     margin-right: 20px;
  150.     margin-bottom: -4px
  151. }
  152. .button.cutebutt1.onMenu {
  153.     position: relative;
  154.     display: inline-block;
  155.     background-color: #151515;
  156.     text-align: center;
  157.     color: #fff;
  158.     pointer-events: all;
  159.     cursor: pointer;
  160.     -webkit-transition: all .2s;
  161.     transition: all .2s;
  162.     border-style: solid;
  163.     border-radius: 1px !important;
  164.     border-color: #1d1d1d;
  165. }
  166. .button.cutebutt2.onMenu {
  167.     position: relative;
  168.     display: inline-block;
  169.     background-color: #151515;
  170.     text-align: center;
  171.     color: #fff;
  172.     pointer-events: all;
  173.     cursor: pointer;
  174.     -webkit-transition: all .2s;
  175.     transition: all .2s;
  176.     border-style: solid;
  177.     border-radius: 1px !important;
  178.     border-color: #1d1d1d;
  179. }
  180. .killStreakItem {
  181.     display: contents;
  182.     background-size: contain;
  183.     margin-left: 10px;
  184.     width: 70px;
  185.     height: 70px;
  186.     background-color: rgba(0, 0, 0, .25)
  187. }
  188. #voiceDisplay {
  189.     display:none;
  190. }
  191. #aHolder {
  192.     position: absolute !important;
  193.     bottom: 65% !important;
  194.     left: 0% !important;
  195.     background-color: transparent;
  196.     right: 3 !important;
  197.     text-align: center !important;
  198.     z-index: 0 !important;
  199.     pointer-events: none !important;
  200. }
  201. #spectButton {
  202.     left: 71% !important;
  203.     top: 1% !important;
  204.     transform: scale(1.25) !important;
  205. }
  206. #uiBase.onMenu #claimHolder {
  207.     cursor: pointer;
  208.     text-align: center;
  209.     position: absolute;
  210.     left: 0%!important;
  211.     top: 7%!important;
  212.     pointer-events: all;
  213. }
  214. #uiBase.onMenu #merchHolder {
  215.     display: block;
  216.     cursor: pointer;
  217.     text-align: center;
  218.     position: absolute;
  219.     left: 7%!important;
  220.     top: 7%!important;
  221.     transform:scale(0.85);
  222.     pointer-events: all;
  223. }
  224. #instructions {
  225.     top: 39%;
  226. }
  227. #topLeftHolder {
  228.     text-align: left;
  229.     position: absolute;
  230.     z-index: 10;
  231.     border-width: 0px;
  232.     width: 250px;
  233.     background-color: #17171778;
  234.     height: 117px;
  235.     top: 1px;
  236.     left: 3px;
  237.     padding-left: 14px;
  238.     padding-right: 5px;
  239.     padding-top: 11px;
  240.     padding-bottom: 6px;
  241.     pointer-events:all;
  242. }
  243. #timerDisplay {
  244.     border-radius:0px !important;
  245. }
  246. #leaderDisplay {
  247.     border-radius: 0px;
  248. }
  249. #bottomRight {
  250.     pointer-events:all !important;
  251. }
  252. #bottomLeftHolder {
  253.     pointer-events:all !important;
  254. }
  255. .buttonP {
  256.     background-color: #333232 !important;
  257.     box-shadow: inset 0 -7px 0 0 #121212 !important;
  258. }
  259. .button {
  260.     font-size: 20px!important;
  261.     background-color: #333232 !important;
  262.     box-shadow: inset 0 -7px 0 0 #121212 !important;
  263.     text-shadow: -1px -1px 0 #202020, 1px -1px 0 #202020, -1px 1px 0 #202020, 1px 1px 0 #202020, -2px -2px 0 #202020, 2px -2px 0 #202020, -2px 2px 0 #202020, 2px 2px 0 #202020 !important;
  264. }
  265.  
  266.  #chatHolder {
  267.     --borderWidth: 2px;
  268.     position: relative;
  269.     top:600px;
  270.     border-width:1px;
  271.     border-radius: var(--borderWidth);
  272. }
  273. #chatHolder:after {
  274.     content:'';
  275.     position: absolute;
  276.     top: calc(-1 * var(--borderWidth));
  277.     left: calc(-1 * var(--borderWidth));
  278.     height: calc(100% + var(--borderWidth) * 2);
  279.     width: calc(100% + var(--borderWidth) * 2);
  280.     background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  281.     border-radius: calc(2 * var(--borderWidth));
  282.     z-index: -1;
  283.     animation: animatedgradient 2s ease alternate infinite;
  284.     background-size: 300% 300%;
  285. }
  286. @keyframes animatedgradient {
  287.     0% {
  288.         background-position: 0% 50%;
  289.     }
  290.     50% {
  291.         background-position: 100% 50%;
  292.     }
  293.     100% {
  294.         background-position: 0% 50%;
  295.     }
  296. }
  297. #mainLogo {
  298.     background-image: url("https://i.ebayimg.com/images/g/LZUAAOSwIbtcCtft/s-l640.jpg") !important;
  299. }
  300.  
  301.  
  302. .leaderNameM {
  303.     text-align: center;
  304.     text-decoration: underline;
  305.     font-size: 30px !important;
  306.     font-family: monospace;
  307.     letter-spacing: 5px;
  308. }
  309.  
  310. .leaderNameM {
  311.     background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  312.     -webkit-background-clip: text;
  313.     background-clip: text;
  314.     color: transparent;
  315.     animation: rainbow_animation 4s ease-in-out infinite;
  316.     background-size: 400% 100%;
  317. }
  318.  
  319. @keyframes rainbow_animation {
  320.     0%,100% {
  321.         background-position: 0 0;
  322.     }
  323.  
  324.     50% {
  325.         background-position: 100% 0;
  326.     }
  327. }
  328.  
  329. .settName, .settNameSmall {
  330.     text-decoration: underline;
  331.     background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  332.     -webkit-background-clip: text;
  333.     clear: both;
  334.     margin-top: 3px;
  335.     font-size: 22px;
  336.     color: transparent;
  337.     animation: rainbow_animation 6s ease-in-out infinite;
  338.     background-size: 400% 100%;
  339. }
  340.  
  341. a {
  342.     visibility: visible;
  343.     color: #FFFFFF !important;
  344. }
  345. /*
  346. #instructions {
  347.     visibility: hidden;
  348. }
  349. #instructions:after{
  350.     visibility: visible;
  351.     letter-spacing: 5px;
  352.     content: "AIMJUNKIES‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎";
  353. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement