Advertisement
ruesha

codes for xn--vj5bvo crd

Jan 23rd, 2022
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. i've labeled which code goes for which! follow my tutorial here: https://www.youtube.com/watch?v=k0P3VjGDM68&feature=youtu.be
  2.  
  3. ---- for container border ----
  4. border: 3px double colorcode;
  5. border-radius:8px;
  6.  
  7. ---- for font embed ----
  8. <style>
  9. @font-face {
  10. font-family: baligle;
  11. src:url(https://dl.dropbox.com/s/xqmnf9qj9tmgqgz/Baligle%20Regular.otf);
  12. }
  13.  
  14. @font-face {
  15. font-family: cutie;
  16. src:url(https://dl.dropbox.com/s/xo075bh6tbd4f7d/CP.ttf);
  17. }
  18.  
  19. </style>
  20.  
  21. ---- for scroll pop text ----
  22. <style>
  23.  
  24. #text01{
  25. -webkit-animation: pop 1s ease-in-out infinite alternate;
  26. animation: pop 1s ease-in-out infinite alternate;
  27. -moz-animation: pop 1s ease-in-out infinite alternate;
  28. }
  29.  
  30. @keyframes
  31. pop {
  32. from {
  33. transform:scale(0.95)
  34. }
  35.  
  36. 50% {
  37. transform:scale(1)
  38. }
  39.  
  40. to {
  41. transform:scale(0.95)
  42. }
  43. }
  44.  
  45. @-webkit-keyframes pop {
  46. from {
  47. -webkit-transform:scale(0.95)
  48.  
  49. }
  50.  
  51. 50% {
  52. -webkit-transform:scale(1)
  53.  
  54. }
  55.  
  56. to {
  57. -webkit-transform:scale(0.95)
  58.  
  59. }
  60. }
  61.  
  62. </style>
  63.  
  64. ---- for scrollbox ----
  65. height: 6em;
  66. overflow: scroll;
  67.  
  68. ---- for markโ€‹----
  69. @font-face {
  70. font-family: cutie;
  71. src:url(https://dl.dropbox.com/s/xo075bh6tbd4f7d/CP.ttf);
  72. }
  73. font-size: 13px;
  74. background: #F2BCB1;
  75. border-radius: 9px;
  76. border: 1px solid #333333;
  77. padding-left: 5px;
  78. padding-right: 5px;
  79. color: #333333;
  80. height: 5px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement