mixue

cr tatsunroi 2

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