frightfulactions

loading

Apr 20th, 2026
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. :root {
  2. --bg: #232428;
  3. --bgImg: none;
  4. --track: #3c3c3c;
  5. --shadow: #fff000;
  6. --color: #d5c999;
  7. --circle: #d5c999;
  8. --font: Arial;
  9. }
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. overflow-x: hidden;
  14. }
  15. body:before {
  16. content: "";
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. width: 100%;
  21. height: 100%;
  22. background: var(--bg);
  23. background-image: var(--bgImg);
  24. background-size: 100% 100%;
  25. }
  26. .ind1 {
  27. padding-top: 5px;
  28. font-size: 18px;
  29. }
  30. .ind2 {
  31. padding-top: 5px;
  32. font-size: 18px;
  33. }
  34. .ind3 {
  35. padding-top: 10px;
  36. font-size: 16px;
  37. line-height: 25px;
  38. }
  39. #indicator {
  40. position: absolute;
  41. top: 50%;
  42. left: 50%;
  43. padding-left: 2px;
  44. transform: translate(-50%,-50%);
  45. width: 150px;
  46. height: 150px;
  47. background: transparent;
  48. border: 3px solid var(--track);
  49. border-radius: 50%;
  50. display: flex;
  51. flex-direction: column;
  52. align-items: center;
  53. justify-content: center;
  54. text-align: center;
  55. font-family: var(--font);
  56. color: var(--color);
  57. letter-spacing: 3px;
  58. text-transform: uppercase;
  59. text-shadow: 0 0 10px var(--shadow);
  60. box-shadow: 0 0 20px rgba(0,0,0,.5);
  61. }
  62. #indicator:before {
  63. content: "";
  64. position: absolute;
  65. top: -3px;
  66. left: -3px;
  67. width: 104%;
  68. height: 104%;
  69. border: 3px solid transparent;
  70. border-top: 3px solid var(--circle);
  71. border-right: 3px solid var(--circle);
  72. border-radius: 50%;
  73. animation: animateC 2s linear infinite;
  74. }
  75. #indicator > div {
  76. max-width: 120px;
  77. }
  78. #lm {
  79. opacity: 0;
  80. transition: opacity 0.5s;
  81. }
  82. @keyframes animateC {
  83. 0% {
  84. transform: rotate(0deg);
  85. }
  86. 100% {
  87. transform: rotate(360deg);
  88. }
  89. }
  90. @keyframes animate {
  91. 0% {
  92. transform: rotate(45deg);
  93. }
  94. 100% {
  95. transform: rotate(405deg);
  96. }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment