Advertisement
izuemis

cr crditem #3

Dec 28th, 2022
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. -- FONTS --
  2. @font-face {
  3. font-family: motley;
  4. src: url(https://dl.dropbox.com/s/qh1a8vcvex553l5/MotleyForcesRegular-w1rZ3.ttf?dl=0);
  5. }
  6.  
  7. @font-face {
  8. font-family: hug-me-tight;
  9. src: url(https://dl.dropbox.com/s/ysi69u7ax8fv1b1/Hug%20Me%20Tight%20-%20TTF.ttf);
  10. }
  11.  
  12. -- ROTATING DOILE --
  13.  
  14. #image01 {
  15. -webkit-animation: spin 2s linear infinite;
  16. -webkit-animation:spin 4s linear infinite;
  17. -moz-animation:spin 4s linear infinite; animation:spin 4s linear infinite;
  18. }
  19. @-moz-keyframes spin {
  20. 100% {
  21. -moz-transform: rotate(360deg);
  22. }
  23.  
  24. } @-webkit-keyframes spin {
  25. 100% {
  26. -webkit-transform: rotate(360deg);
  27. }
  28. }
  29. @keyframes spin {
  30. 100% {
  31. -webkit-transform: rotate(360deg);
  32. transform:rotate(360deg);
  33. }
  34. }
  35.  
  36. -- CHIBI IMAGE --
  37. do note that it everything for this is only made for the said photo
  38. expect a trial and error please do not send me a rtsp about faulty errors
  39. you are expected to adjust for your own images.
  40.  
  41. position: absolute;
  42. top: 2em;
  43. left: 1em;
  44.  
  45. -- USERNAME TEXT --
  46. font-family: motley;
  47. text-shadow: -1px 0 #9BB1E8, 0 1px #9BB1E8, 1px 0 #9BB1E8, 0 -1px #9BB1E8, 0 0;
  48. position: absolute;
  49. left: 6em;
  50. top: 2em;
  51.  
  52. -- NAVIGATION --
  53. font-family: motley;
  54. text-shadow: -1px 0 #9BB1E8, 0 1px #9BB1E8, 1px 0 #9BB1E8, 0 -1px #9BB1E8, 0 0;
  55. position: absolute;
  56. left: 9em;
  57. bottom: 2em;
  58.  
  59. -- SCROLLBOX --
  60. ANIMATION: can be found in animista
  61.  
  62. padding: 5px;
  63. border-width:8px;
  64. border-style:solid;
  65. border-image: url("https://dl.dropbox.com/s/v8iy6a8feyq041p/blue%20ver.png") 8 fill round;
  66. height: 10em;
  67. width: 15em;
  68. overflow: auto;
  69. position: absolute;
  70. left: 11.75em;
  71. top: 6.5em;
  72. -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  73. animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  74.  
  75. -- HIGHLIGHT / MARK --
  76. color: #9BB1E8;
  77. background: white;
  78. border: 1px solid black;
  79. border-radius: 10px;
  80. padding-left: 8px;
  81. padding-right: 8px;
  82. font-family: hug-me-tight;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement