dollcrds

brunch crd co codes

Jul 13th, 2022
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. ---scrollbar---
  2.  
  3. <style>
  4. html {
  5. overflow: scroll;
  6. overflow-x: hidden;
  7. }
  8. ::-webkit-scrollbar {
  9. width: 0; /* remove scrollbar space */
  10. background: transparent; /* to make scrollbar invisible */
  11. }
  12. ::-webkit-scrollbar-thumb {
  13. background: transparent;
  14. }
  15. </style>
  16.  
  17. ---fonts---
  18.  
  19. <style>
  20.  
  21. @font-face {
  22. font-family: windows;
  23. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  24. }
  25.  
  26. @font-face {
  27. src: url(https://dl.dropbox.com/s/ktlx5w7t8gk42nb/SakeMoru-Regular.ttf);
  28. font-family: SakeMoru;
  29. }
  30. </style>
  31.  
  32. ---animation---
  33.  
  34. <style>
  35. #home, #rules, #extra {
  36. -webkit-animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  37. animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  38. }
  39. /* ----------------------------------------------
  40. * Generated by Animista on 2022-7-6 6:19:20
  41. * Licensed under FreeBSD License.
  42. * See http://animista.net/license for more info.
  43. * w: http://animista.net, t: @cssanimista
  44. * ---------------------------------------------- */
  45.  
  46. /**
  47. * ----------------------------------------
  48. * animation scale-up-ver-center
  49. * ----------------------------------------
  50. */
  51. @-webkit-keyframes scale-up-ver-center {
  52. 0% {
  53. -webkit-transform: scaleY(0.4);
  54. transform: scaleY(0.4);
  55. }
  56. 100% {
  57. -webkit-transform: scaleY(1);
  58. transform: scaleY(1);
  59. }
  60. }
  61. @keyframes scale-up-ver-center {
  62. 0% {
  63. -webkit-transform: scaleY(0.4);
  64. transform: scaleY(0.4);
  65. }
  66. 100% {
  67. -webkit-transform: scaleY(1);
  68. transform: scaleY(1);
  69. }
  70. }
  71. </style>
Advertisement
Add Comment
Please, Sign In to add comment