Advertisement
izuemis

cr anastasia 3

May 13th, 2023
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. -- FONTS --
  2.  
  3. @font-face {
  4. font-family: dreams;
  5. src: url(https://dl.dropbox.com/s/i9lg3nchwvgi6p3/dream.ttf);
  6. }
  7.  
  8. @font-face {
  9. font-family: windows;
  10. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  11. }
  12.  
  13. @font-face {
  14. font-family: roman;
  15. src: url(https://dl.dropbox.com/s/f9cfrx4wyt13rwv/ROMANTIC.TTF);
  16. }
  17.  
  18. -- TITLE TEXT --
  19. font-family: roman;
  20. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  21.  
  22. -- HOMEPAGE SCROLLBOX --
  23. background: rgba(255,255,255,0.75);
  24. padding: 5px;
  25. border-radius: 1em;
  26. border: 1px solid #303030;
  27. height: 8em;
  28. overflow: auto;
  29. font-family: windows;
  30.  
  31. -- SMALLER SCROLLBOX --
  32. background: rgba(255,255,255,0.75);
  33. padding: 5px;
  34. border-radius: 1em;
  35. border: 1px solid #303030;
  36. height: 5.5em;
  37. overflow: auto;
  38. font-family: windows;
  39.  
  40. -- NAVIGATION CONTAINER --
  41. border-radius: 0em .5em .5em 0em;
  42. width: 21%;
  43. position: absolute;
  44. right: -3.95em;
  45. bottom: 6em;
  46. animation-name: floating;
  47. animation-duration: 3s;
  48. animation-iteration-count: infinite;
  49. animation-timing-function: ease-in-out;
  50. }
  51.  
  52. @keyframes floating {
  53. 0% { transform: translate(0, 0px); }
  54. 50% { transform: translate(0, 15px); }
  55. 100% { transform: translate(0, -0px); }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement