CornyGoose

Olivia CSS

Dec 15th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. body {
  2. display: block;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. width: 100%;
  9. height: 100%;
  10. border: 0;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #000000;
  14. background-size: 10%;
  15. background-position: center;
  16. background-repeat: repeat;
  17. z-index: 0;
  18. }
  19.  
  20. .box1{
  21. position: absolute;
  22. width: 29vw;
  23. height: 25vw;
  24. left: 40vw;
  25. bottom: 0vh;
  26. border-top: .5vh solid #D4D4D4;
  27. border-left: .5vh solid #D4D4D4;
  28. border-bottom: .5vh solid #D4D4D4;
  29. padding-right: 15vw;
  30. background: #;
  31. font-size: 4vh;
  32. color: #D4D4D4;
  33. overflow-y: scroll;
  34. z-index: 2;
  35. transition: .9s ease-out;
  36. opacity: 0;
  37. }
  38.  
  39. .picture {
  40. background-image: url(https://i.imgur.com/tSuYoIm.png);
  41. background-size: 32vw;
  42. background-repeat: no-repeat;
  43. position:absolute;
  44. bottom: 0vh;
  45. right: 0vw;
  46. width: 32vw;
  47. height: 37vw;
  48. left: vh;
  49. z-index: 2;
  50. }
  51.  
  52.  
  53. #name1 {
  54. position: absolute;
  55. left: -14vw;
  56. top: 8vh;
  57. background: #000000;
  58. width: 70vw;
  59. height: 7vw;
  60. font-family: 'Special Elite', cursive;
  61. font-size: 5vh;
  62. background: url(https://thumbs.gfycat.com/IllustriousSlipperyAmericanwirehair-size_restricted.gif) -110px -260px repeat;
  63. -webkit-text-fill-color: transparent;
  64. -webkit-background-clip: text;
  65. display: block;
  66. text-align: center;
  67. letter-spacing: .2vw;
  68. -webkit-transition: opacity 2s linear;
  69. -moz-transform: skew(-10deg, 0deg);
  70. -webkit-transform: skew(-10deg, 0deg);
  71. -o-transform: skew(-10deg, 0deg);
  72. -ms-transform: skew(-10deg, 0deg);
  73. transform: skew(-10deg, 0deg);
  74. z-index: 4;
  75. opacity: 0;
  76. transition: .9s ease-out;
  77. }
  78.  
  79.  
  80. #name2 {
  81. position: absolute;
  82. right: -14vw;
  83. bottom: 7vh;
  84. background: #000000;
  85. width: 70vw;
  86. height: 7vw;
  87. font-family: 'Special Elite', cursive;
  88. font-size: 5vh;
  89. background: url(https://thumbs.gfycat.com/IllustriousSlipperyAmericanwirehair-size_restricted.gif) -110px -260px repeat;
  90. -webkit-text-fill-color: transparent;
  91. -webkit-background-clip: text;
  92. display: block;
  93. text-align: center;
  94. letter-spacing: .2vw;
  95. -webkit-transition: opacity 2s linear;
  96. -moz-transform: skew(-10deg, 0deg);
  97. -webkit-transform: skew(-10deg, 0deg);
  98. -o-transform: skew(-10deg, 0deg);
  99. -ms-transform: skew(-10deg, 0deg);
  100. transform: skew(-10deg, 0deg);
  101. z-index: 4;
  102. opacity: 0;
  103. transition: .9s ease-out;
  104. }
  105.  
  106.  
  107. a {color: #6D6D6D;
  108. text-decoration: none;
  109. -webkit-transition: all 0.5s ease-in-out;
  110. -moz-transition: all 0.5s ease-in-out;
  111. -o-transition: all 0.5s ease-in-out;
  112. -ms-transition: all 0.5s ease-in-out;
  113. transition: all 0.5s ease-in-out;
  114. }
  115.  
  116. a:hover {color: #fff;
  117. text-decoration: bold;
  118. -webkit-transition: all 0.5s ease-in-out;
  119. -moz-transition: all 0.5s ease-in-out;
  120. -o-transition: all 0.5s ease-in-out;
  121. -ms-transition: all 0.5s ease-in-out;
  122. transition: all 0.5s ease-in-out;
  123. }
  124.  
  125.  
  126. ::-webkit-scrollbar-track
  127. {
  128. -webkit-box-shadow: inset 0 0 0.6vw rgba(0,0,0,0.3);
  129. border-radius: 0vw;
  130. background-color: #;
  131. }
  132.  
  133. ::-webkit-scrollbar
  134. {
  135. width: 0vh;
  136. background-color: #;
  137. }
  138.  
  139. ::-webkit-scrollbar-thumb
  140. {
  141. border-radius: 0vw;
  142. -webkit-box-shadow: inset 0 0 0.6vw rgba(0,0,0,.3);
  143. background-color: #;
  144. }
  145.  
  146.  
  147. body:hover .box1{
  148. opacity: 1;
  149. transition: 2s;
  150. transition-delay: .5s;
  151. }
  152.  
  153.  
  154. @keyframes fadeIn {
  155. 0% {
  156. opacity:0;
  157. }
  158. 100% {
  159. opacity:1;
  160. }
  161. }
  162.  
  163. @-moz-keyframes fadeIn {
  164. 0% {
  165. opacity:0;
  166. }
  167. 100% {
  168. opacity:1;
  169. }
  170. }
  171.  
  172. @-webkit-keyframes fadeIn {
  173. 0% {
  174. opacity:0;
  175. }
  176. 100% {
  177. opacity:1;
  178. }
  179. }
  180.  
  181. @-o-keyframes fadeIn {
  182. 0% {
  183. opacity:0;
  184. }
  185. 100% {
  186. opacity:1;
  187. }
  188. }
  189.  
  190. @-ms-keyframes fadeIn {
  191. 0% {
  192. opacity:0;
  193. }
  194. 100% {
  195. opacity:1;
  196. }
  197.  
  198. font-family: 'Permanent Marker', cursive;
Advertisement
Add Comment
Please, Sign In to add comment