Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---scrollbar---
- <style>
- html {
- overflow: scroll;
- overflow-x: hidden;
- }
- ::-webkit-scrollbar {
- width: 0; /* remove scrollbar space */
- background: transparent; /* to make scrollbar invisible */
- }
- ::-webkit-scrollbar-thumb {
- background: transparent;
- }
- </style>
- ---fonts---
- <style>
- @font-face {
- font-family: windows;
- src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
- }
- @font-face {
- src: url(https://dl.dropbox.com/s/ktlx5w7t8gk42nb/SakeMoru-Regular.ttf);
- font-family: SakeMoru;
- }
- </style>
- ---animation---
- <style>
- #home, #rules, #extra {
- -webkit-animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
- animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
- }
- /* ----------------------------------------------
- * Generated by Animista on 2022-7-6 6:19:20
- * Licensed under FreeBSD License.
- * See http://animista.net/license for more info.
- * w: http://animista.net, t: @cssanimista
- * ---------------------------------------------- */
- /**
- * ----------------------------------------
- * animation scale-up-ver-center
- * ----------------------------------------
- */
- @-webkit-keyframes scale-up-ver-center {
- 0% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 100% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @keyframes scale-up-ver-center {
- 0% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 100% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment