mixue

cr tatsunroi (pro standard)

Feb 26th, 2023 (edited)
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. * PLEASE CREDIT TATSUNROI WHEN REMAKING *
  2.  
  3. --- MAIN CONTAINER ---
  4. #elementID > .wrapper {
  5. width: 18em;
  6. height: 20em;
  7. padding: 25px;
  8. border-radius: 25px;
  9. box-shadow: .35em .35em .5em #0000007A, rgba(65,63,83) 0px -3px 10px 0px inset;
  10. }
  11.  
  12. --- NAVIGATION TEXT ---
  13. #elementID {
  14. width: 4.5em;
  15. height: 1.3em;
  16. padding: 5px 12px 2px 11px;
  17. font-family: fotograami-hearts;
  18. text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white, 1px 0px white, 0 0;
  19. border: 1px solid white;
  20. border-radius: 20px 2px 2px 20px;
  21. background: linear-gradient(180deg, #FF96BE 0%, #FFFFFF 100%);
  22. box-shadow: .35em .35em .5em #0000007A, #523E45 0px 0px 8px 0px inset;
  23. z-index: 9999;
  24. animation: jerk 0.5s infinite;
  25. position: absolute;
  26. top: 8em;
  27. left: 17em;
  28. }
  29.  
  30. @media only screen and (max-width: 600px) {
  31. #elementID {
  32. width: 4.5em;
  33. top: 7em;
  34. left: 10.5em;
  35. }
  36. }
  37.  
  38. @keyframes jerk {
  39. 0% {
  40. transform: rotate(2deg);
  41. }
  42.  
  43. 50% {
  44. transform: rotate(2deg);
  45. }
  46.  
  47. 51% {
  48. transform: rotate(-2deg);
  49. }
  50.  
  51. 100% {
  52. transform: rotate(-2deg);
  53. }
  54. }
  55.  
  56. --- SCROLLBOX ---
  57. #elementID {
  58. width: 18.3em;
  59. height: 27.5em;
  60. padding: 1em;
  61. padding-top: 1.5em;
  62. font-family: neuemetana;
  63. border-radius: 5px 40px;
  64. border: 1px solid white;
  65. background: linear-gradient(180deg, #BF7C9880 0%, #ffffffa6 100%);
  66. -webkit-animation: scale-up-tl 0.8s cubic-bezier(0.680, -0.550, 0.265, 1.550) both;
  67. animation: scale-up-tl 0.8s cubic-bezier(0.680, -0.550, 0.265, 1.550) both;
  68. overflow: auto;
  69. position: absolute;
  70. bottom: 7em;
  71. left: 20em;
  72. }
  73.  
  74. @media only screen and (max-width: 600px) {
  75. #elementID {
  76. width: 17.5em;
  77. height: 26em;
  78. padding-top: 2em;
  79. bottom: 7.8em;
  80. left: 8.8em;
  81. }
  82. }
  83.  
  84. #elementID mark {
  85. font-family: callicotez;
  86. font-size: 30px;
  87. text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white, 1px 0px white, 0 0;
  88. }
  89.  
  90. @keyframes scale-up-tl {
  91. 0% {
  92. -webkit-transform: scale(0.1);
  93. transform: scale(0.1);
  94. -webkit-transform-origin: 0% 0%;
  95. transform-origin: 0% 0%;
  96. }
  97.  
  98. 100% {
  99. -webkit-transform: scale(1);
  100. transform: scale(1);
  101. -webkit-transform-origin: 0% 0%;
  102. transform-origin: 0% 0%;
  103. }
  104. }
  105.  
  106.  
  107. --- ALL FONTS ---
  108. <style>
  109. @font-face {
  110. font-family: windows;
  111. src: url(https://dl.dropbox.com/s/kaxqli0m8m9zvdc/Windows%20Regular.ttf?dl=0);
  112. }
  113.  
  114. @font-face {
  115. src: url(https://dl.dropbox.com/s/dumo4446gnwnc6a/Callicotez.ttf);
  116. font-family: callicotez;
  117. }
  118.  
  119. @font-face {
  120. src: url(https://dl.dropbox.com/s/ab2ghc5njl0wfwt/fotograami-hearts01.ttf);
  121. font-family: fotograami-hearts;
  122. }
  123.  
  124. @font-face {
  125. src: url(https://dl.dropbox.com/s/nkb8599kf7u1hev/NeueMetana-Regular.otf);
  126. font-family: neuemetana;
  127. }
  128.  
  129. @font-face {
  130. src: url(https://dl.dropbox.com/s/yznifg6uk7oqhz6/Moonstar.ttf);
  131. font-family: moonstar;
  132. }
  133. </style>
  134.  
  135. --- RADIAL GRADIENT BG ---
  136. <style>
  137. body {
  138. background: radial-gradient(circle, #FFFFFF 34%, #bcc3db 100%);
  139. </style>
  140.  
Advertisement
Add Comment
Please, Sign In to add comment