mixue

cr jjuniiy 6

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