Nitro Type Glitched Window Style!

It looks like you are on window. But way cooler!!!

  1. // ==UserScript==
  2. // @name Nitro Type Glitched Window Style!
  3. // @namespace http://userstyles.org
  4. // @description It looks like you are on window. But way cooler!!!
  5. // @author Sniper Typist On YouTube
  6. // @homepage https://userstyles.org/styles/236719
  7. // @include http://nitrotype.com/*
  8. // @include https://nitrotype.com/*
  9. // @include http://*.nitrotype.com/*
  10. // @include https://*.nitrotype.com/*
  11. // @include https://*.nitrotype.com
  12. // @run-at document-start
  13. // @version 1.2
  14. // ==/UserScript==
  15. (function() {var css = "";
  16. if (false || (document.domain == "nitrotype.com" || document.domain.substring(document.domain.indexOf(".nitrotype.com") + 1) == "nitrotype.com"))
  17. css += [
  18. ".dash-copyContainer",
  19. " {",
  20. " background:#2E3141;",
  21. " -webkit-box-shadow: 2px 1px 157px 10px rgb(255, 0, 0);",
  22. " box-shadow: 0px 1px 157px 10px rgb(0, 179, 255);",
  23. " border-radius: 5px;",
  24. " flex: 1;",
  25. " overflow: hidden;",
  26. " padding: 15px;",
  27. " display: flex;",
  28. " }",
  29. "",
  30. " .dash-copy",
  31. " {",
  32. " color: #0ff;",
  33. " text-shadow: 0 0 5px #00ffec, 0 0 7px #0059ff;",
  34. " font-family: \"Roboto Mono\", \"Courier New\", Courier, \"Lucida Sans Typewriter\", \"Lucida Typewriter\", monospace;",
  35. " font-size: 18px;",
  36. "",
  37. " }",
  38. ".profile-carContainer.card.card--a.card--shadow-l {background-color:#fff0;}",
  39. ".raceResults-awards {background:#fff0;}",
  40. ".raceResults-close.raceResults-close--minimizer {background:#dfd612;}",
  41. ".g.raceResults-grid {background:#fff0;}",
  42. "",
  43. "",
  44. "body",
  45. " {",
  46. " overflow-y: scroll;",
  47. " background: none;",
  48. " overflow-x: hidden;",
  49. " position: relative;",
  50. " }",
  51. "",
  52. " .card--grit",
  53. " {",
  54. " background-image: url(\"https://wallpaperaccess.com/full/3296133.png\");",
  55. " background: fixed;",
  56. " }",
  57. "",
  58. " html",
  59. " {",
  60. " background: fixed url(\"https://wallpaperfordesktop.com/wp-content/uploads/2021/11/Broken-Screen-Wallpaper.jpg\") no-repeat, #2d2e2e;",
  61. " box-sizing: border-box;",
  62. " color: #2d2e2e;",
  63. " font-family: \"Montserrat\", sans-serif;",
  64. " font-size: 16px;",
  65. " font-weight: 300;",
  66. " line-height: 1.6;",
  67. " background-size: 100%;",
  68. " }",
  69. "",
  70. " .bg--gradient {",
  71. " background: fixed;",
  72. "}",
  73. ".theme--pDefault .profile-bg",
  74. " {",
  75. " background: url(\"https://ak.picdn.net/shutterstock/videos/1030010189/thumb/4.jpg?ip=x480\") top left repeat, linear-gradient(0deg, #2d2e2e 60%, #ffffff 100%);",
  76. " color: #d3d3d3;",
  77. " background-size: 100%",
  78. " }",
  79. "",
  80. " .theme--pDefault .profile-bgHead",
  81. " {",
  82. " background: url(\"https://ak.picdn.net/shutterstock/videos/1030010189/thumb/4.jpg?ip=x480\") top left repeat, linear-gradient(0deg, #2d2e2e 10%, #ffffff 100%);",
  83. " background-size: 100%",
  84. " }",
  85. "",
  86. " .theme--pDefault.is-gold .profile-bg",
  87. " {",
  88. " background: url(\"https://ak.picdn.net/shutterstock/videos/1030010189/thumb/4.jpg?ip=x480\") top left repeat, linear-gradient(0deg, #2d2e2e 10%, #f00 100%);",
  89. " background-size: 100%",
  90. " }",
  91. ".garage",
  92. "{",
  93. " background:url(https://wallpaperplay.com/walls/full/6/c/d/67928.jpg)",
  94. "}",
  95. "",
  96. "path:first-child, path:nth-child(7) {",
  97. " fill: #11dfea;",
  98. "}"
  99. ].join("\n");
  100. if (false || (document.location.href.indexOf("http://example.com") == 0))
  101. css += [
  102.  
  103. ].join("\n");
  104. if (typeof GM_addStyle != "undefined") {
  105. GM_addStyle(css);
  106. } else if (typeof PRO_addStyle != "undefined") {
  107. PRO_addStyle(css);
  108. } else if (typeof addStyle != "undefined") {
  109. addStyle(css);
  110. } else {
  111. var node = document.createElement("style");
  112. node.type = "text/css";
  113. node.appendChild(document.createTextNode(css));
  114. var heads = document.getElementsByTagName("head");
  115. if (heads.length > 0) {
  116. heads[0].appendChild(node);
  117. } else {
  118. // no head yet, stick it whereever
  119. document.documentElement.appendChild(node);
  120. }
  121. }
  122. })();