Advertisement
ityizhuo

britney crd code

Sep 26th, 2021
3,641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.37 KB | None | 0 0
  1. <!--- cr itzhuo if you used and carrduser (Jake) on insta pls and thankiesss enjoy it--->
  2.  
  3.  
  4. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  5.  
  6. <link href="//fonts.googleapis.com/css?family=Karla" rel="stylesheet">
  7.  
  8. <link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  9.  
  10. <head>
  11. <link rel="preconnect" href="https://fonts.googleapis.com">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap" rel="stylesheet">
  14. <link rel="preconnect" href="https://fonts.googleapis.com">
  15. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  16. <link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">
  17. <link rel="preconnect" href="https://fonts.googleapis.com">
  18. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  19. <link href="https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap" rel="stylesheet">
  20. </head>
  21.  
  22. <style>
  23. @font-face {
  24. font-family: sant joan;
  25. src: url(https://dl.dropbox.com/s/iwvkrg8ccgd1pf4/SantJoanDespi-Regular.otf);
  26. }
  27.  
  28. @font-face {
  29. font-family: lovely;
  30. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  31. }
  32.  
  33. #container {
  34. width: 27em;
  35. height: 20em;
  36. background-image: url("https://dl.dropbox.com/s/ha2emf7wraljbg4/britgif.gif"); /* url of the img */
  37. background-color: #F781BE; /* if the img is unavailable */
  38. height: 200px; /* you need to set a specified height */
  39. background-position: center; /* to center the image */
  40. background-repeat: no-repeat; /* do not repeat the image */
  41. background-size: cover; /* to resize the background image to cover the entire container */
  42. transform-style: preserve-3d;
  43. border-radius: 0.75em;
  44. border: 4px solid #FE2EC8;
  45. box-shadow: 0 0 0 1px black, inset 0 0 0 1px black, 0px 0px 8px 0px #000;
  46. position: relative;
  47. padding-top:3px;
  48. padding-bottom: 15px;
  49. padding-left:10px;
  50. padding-right:10px;
  51. overflow: hidden;
  52. }
  53.  
  54. .insides {
  55. position: relative;
  56. top: 10em;
  57. width: 100%;
  58. height: 0%;
  59. overflow-y: auto;
  60. color: black;
  61. border:4px double black;
  62. border-radius:10px;
  63. opacity: 0;
  64. transition: .4s all;
  65. }
  66.  
  67. #container:hover .insides {
  68. opacity: 1.9;
  69. height:80%;
  70. top: 1em;
  71. font-family: 'Jost', sans-serif;
  72. background: rgba(255, 224, 247, 0.78);
  73. padding:10px;
  74. font-family: 'Questrial', sans-serif;
  75. font-size:15px;
  76. text-align:left;
  77. line-height: 1.3;
  78. }
  79.  
  80. mark {
  81. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,88,208,1) 100%);
  82. border: 1px solid #000;
  83. border-radius: 15px;
  84. box-shadow: 0px 0px 2px #000;
  85. font-family: lovely;
  86. color: white;
  87. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0px 0px 3px #000;
  88. padding-left: 10px;
  89. padding-right:10px;
  90. letter-spacing: 1.5px;
  91. text-align: center;
  92. text-decoration: none;
  93. display: inline-block;
  94. font-size: 15px;
  95. margin: 0px 1px;
  96. cursor: hidden;
  97. }
  98.  
  99. <!--- music player start here--->
  100.  
  101. #ongaku {
  102. position:absolute;
  103. top:163px;
  104. left:15px;
  105. width:30px;
  106. height:30px;
  107. z-index:100;
  108. border:2px solid #000; /*Border Colour*/
  109. background-color: #fe2ec8; /*Music Tab Background Colour*/
  110. border-radius:30px;
  111. opacity:1;
  112. -webkit-transition: all 0.6s ease-in-out;
  113. -moz-transition: all 0.6s ease-in-out;
  114. -ms-transition: all 0.6s ease-in-out;
  115. -o-transition: all 0.6s ease-in-out;
  116. transition: all 0.6s ease-in-out;
  117. }
  118.  
  119. a:link {
  120. text-decoration: none;
  121. }
  122.  
  123. #gaku {
  124. width:24px;
  125. height:24px;
  126. margin-top:1px;
  127. margin-left:3px;
  128. overflow:hidden;
  129. -webkit-transition: all 0.6s ease-in-out;
  130. -moz-transition: all 0.6s ease-in-out;
  131. -ms-transition: all 0.6s ease-in-out;
  132. -o-transition: all 0.6s ease-in-out;
  133. transition: all 0.6s ease-in-out;
  134. }
  135.  
  136. #kero {
  137. height:26px;
  138. }
  139.  
  140. #kero img {
  141. margin-right:3px;
  142. margin-left:-1px;
  143. margin-top:3px;
  144. }
  145.  
  146. #kero embed {
  147. margin-top:0px;
  148. }
  149.  
  150. #kero embed, #kero {
  151. -webkit-transition: all 0.6s ease-in-out;
  152. -moz-transition: all 0.6s ease-in-out;
  153. -ms-transition: all 0.6s ease-in-out;
  154. -o-transition: all 0.6s ease-in-out;
  155. transition: all 0.6s ease-in-out;
  156. }
  157.  
  158. #ongaku:hover {
  159. opacity:1;
  160. width:80px;
  161. border:2px solid black;
  162. background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(254,46,200,1) 100%);
  163. }
  164.  
  165. #ongaku:hover #gaku {
  166. width:80px;
  167. }
  168.  
  169. #ongaku:hover #kero {
  170. margin-left:-54px;
  171. }
  172.  
  173. .gst.material-icons {
  174. margin-left:0px;
  175. position:relative;
  176. left:90px;
  177. top:-7px;
  178. font-weight:bold;
  179. font-size:16px;
  180. color: #fff;/* play & pause buttons color */
  181. box-shadow:0px 0px 8px 0px #000;
  182. cursor:pointer;
  183. text-decoration:none;
  184. }
  185.  
  186. </style>
  187.  
  188. <div id="container">
  189.  
  190. <div class="insides">
  191.  
  192. <center><span style="font-family: 'Berkshire Swash', cursive; font-size:25px; text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff, 0px 0px 6px #DF0174; color:#000;">Basic info</span></center>
  193. <br>
  194. <left><p><mark>About me<span style="font-family: 'Gamja Flower', cursive;">♡</span></mark>text text text text text text text text text text text text text text </p>
  195.  
  196. <br>
  197.  
  198. <p><mark>Things To Know</mark> text text text text text text text text text text text text text text text text text text text text text text text text text text text text  </p>
  199.  
  200. <br>
  201.  
  202. <p><mark>DNI</mark> text text text text text text text text text text text text text text  </p>
  203.  
  204. <br>
  205. </left>
  206. </div>
  207. </div>
  208.  
  209. <div id="ongaku"><div id="gaku"><div id="kero">
  210.  
  211. <table cellspacing"0" cellpadding="0"><tr><td>
  212. <!-- Music Gif URL Here (Replace the Link)--><img src="https://64.media.tumblr.com/tumblr_lv2uri9kmQ1r1itgh.gif"></td><td>
  213. <!-- Music Code Here -->
  214. <a class="fire1" onclick="javascript:fireAudio1();">
  215. <i class="gst material-icons playy1"> ♪</i>
  216. <i class="gst material-icons pausee1"> </i>
  217. </a>
  218. <audio id="audio1" src="https://dl.dropbox.com/s/mtpj1vo9dkyms17/GO.mp3"></audio>
  219. </td></tr>
  220. </table>
  221. </div></div></div>
  222. <script src="https://dl.dropbox.com/s/q3g9wib9m3prasf/glenplayer03.js"></script>
  223.  
  224. <!--- scrollbar--->
  225.  
  226. <style>
  227. #scroll {
  228. }
  229. .scroll {
  230. }
  231. /* width */
  232. ::-webkit-scrollbar {
  233. width: 7px;
  234. }
  235. /* Track */
  236. ::-webkit-scrollbar-track {
  237. border-radius: 10px;
  238. opacity:0.5px;
  239. }
  240. /* Handle */
  241. ::-webkit-scrollbar-thumb {
  242. background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(254,46,200,1) 100%);
  243. border-radius: 10px;
  244. opacity: 0.5;
  245. }
  246. /* Handle on hover */
  247. ::-webkit-scrollbar-thumb:hover {
  248. background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(254,46,200,1) 100%);
  249. opacity: 1.0;
  250. }
  251. </style>
  252.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement