Advertisement
hallowimg

spook2

Oct 9th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <style>
  2. body {
  3. background-image: url('https://i.imgur.com/Vkou5AP.jpg');
  4. overflow: hidden;
  5. background-size:100%;
  6. }
  7.  
  8. ::-webkit-scrollbar {display: none}
  9.  
  10. .art img {
  11. top: 18.7vh;
  12. right: 75vh;
  13. position: absolute;
  14. height: 60vh;
  15. width:60vh;
  16. overflow:auto;
  17. z-index:3;
  18. }
  19.  
  20. .art2 img {
  21. top: 25vh;
  22. left: 20vh;
  23. position: absolute;
  24. height: 50vh;
  25. width:25vh;
  26. overflow:auto;
  27. z-index:3;
  28. animation: float 3s ease-in-out infinite;
  29.  
  30. animation: float 3s ease-in-out infinite;
  31. }
  32.  
  33. @keyframes float {
  34. 0% {
  35. transform: translatey(0px);
  36. }
  37. 50% {
  38. transform: translatey(-20px);
  39. }
  40. 100% {
  41. transform: translatey(0px);
  42. }
  43. }
  44.  
  45. .box {
  46. position:absolute;
  47. background-color:#767676;
  48. background-image:url('https://www.transparenttextures.com/patterns/argyle.png');
  49. height:60vh;
  50. width:80vh;
  51. left:65vh;
  52. top:18vh;
  53. border-style:solid;
  54. border-width:.7vh;
  55. border-color:#000;
  56. opacity:0.7;
  57. }
  58.  
  59. .title{
  60. color:#000;
  61. font-family: 'Hello';
  62. font-size:15vh;
  63. font-weight:bold;
  64. top:6vh;
  65. width:50vh;
  66. left:65vh;
  67. position: absolute;
  68. z-index:5;
  69. letter-spacing:.5vh;
  70. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  71. }
  72.  
  73. @font-face {
  74. font-family: "Hello";
  75. src: url('https://dl.dropboxusercontent.com/s/skz2kgzg2rov4ba/Hello%5B1%5D.otf?dl=0');
  76. format("truetype");
  77. }
  78. </style>
  79.  
  80. <div class="box"></div>
  81.  
  82. <div class="art"><img src="https://i.imgur.com/07CWvqI.png"></div>
  83. <div class="art2"><img src="http://i.picpar.com/r5Hd.png"></div>
  84.  
  85.  
  86. <div class="title">Spook</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement