mixue

cr jjuniiy 3

Jan 19th, 2023 (edited)
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. * PLEASE CREDIT JJUNIIY WHEN REMAKING *
  2.  
  3. --- NAME TEXT ---
  4. font-family: candice;
  5. z-index: 99;
  6. -webkit-text-stroke-width: 2px;
  7. -webkit-text-stroke-color: white;
  8. -webkit-animation: pop 1s ease-in-out infinite alternate;
  9. animation: pop 1s ease-in-out infinite alternate;
  10. -moz-animation: pop 1s ease-in-out infinite alternate;
  11.  
  12. --- NAVIGATION TEXTS ---
  13. font-family: sant joan;
  14. background: white;
  15. border-radius: 100%;
  16. padding: 1px 5px 1px 5px;
  17.  
  18. --- SCROLLBOX ---
  19. height: 19em;
  20. width: 19em;
  21. padding: 6px;
  22. padding-top: 30px;
  23. background: #ffffff;
  24. border-radius: 5px;
  25. overflow: auto;
  26. z-index: 80;
  27.  
  28. (mobile)
  29. width: 19em;
  30.  
  31. (Text: Highlight)
  32. font-family: sant joan;
  33. border-radius: 10px;
  34. border: 1px solid black;
  35. background: white;
  36. padding: 0px 5px 0px 5px;
  37.  
  38. (POSITIONING)
  39. position: absolute;
  40. bottom: 0.8em;
  41. left: 0.8em;
  42.  
  43. --- SCROLLABLE CONTAINER ---
  44. overflow: auto;
  45. border-radius: 5px;
  46. height: 21em;
  47. padding-top: 25px;
  48. z-index: 80;
  49.  
  50. (mobile)
  51. height: 21.2em;
  52.  
  53. (POSITIONING)
  54. position: absolute;
  55. bottom: 0em;
  56. left: 0em;
  57.  
  58.  
  59. --- POP ANIMATION ---
  60. <style>
  61. @keyframes pop {
  62. from {
  63. transform:scale(0.95)
  64. }
  65.  
  66. 50% {
  67. transform:scale(1)
  68. }
  69.  
  70. to {
  71. transform:scale(0.95)
  72. }
  73. }
  74.  
  75. @-webkit-keyframes pop {
  76. from {
  77. -webkit-transform:scale(0.95)
  78.  
  79. }
  80.  
  81. 50% {
  82. -webkit-transform:scale(1)
  83.  
  84. }
  85.  
  86. to {
  87. -webkit-transform:scale(0.95)
  88.  
  89. }
  90. }
  91. </style>
  92.  
  93. --- ALL FONTS ---
  94. <style>
  95. @font-face {
  96. src: url(https://dl.dropbox.com/s/2yw6jbbv27g8xwv/Candice%20Ef%20Regular.ttf);
  97. font-family: candice;
  98. }
  99.  
  100. @font-face {
  101. font-family: sant joan;
  102. src: url(https://dl.dropbox.com/s/iwvkrg8ccgd1pf4/SantJoanDespi-Regular.otf);
  103. }
  104. </style>
  105.  
Advertisement
Add Comment
Please, Sign In to add comment