ukamori

lace hover pink crd codes

Jul 12th, 2022 (edited)
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.85 KB | None | 0 0
  1. <!--- CSS FOR NAME TEXT --->
  2. <style>
  3. @font-face {
  4. font-family: good time;
  5. src: url(https://dl.dropbox.com/s/ijxda4xb1cyjpe4/KGAlwaysAGoodTime.ttf);
  6. }
  7.  
  8. #text01 {
  9. text-shadow: -1px 0 #ed94b3, 0 1px #ed94b3, 1px 0 #ed94b3, 0 -1px #ed94b3;
  10. color: #ffe5f2;
  11. font-family: good time;
  12. position: relative;
  13. top: 0.5em;
  14. z-index: 99;
  15. }
  16. </style>
  17.  
  18.  
  19. <!--- MAIN CODE CREDIT TO CIARISPOP/CRDITEM) --->
  20.  
  21. <style>
  22. @font-face {
  23. font-family: 'cutie';
  24. src: url(https://dl.dropbox.com/s/xo075bh6tbd4f7d/CP.ttf);
  25. }
  26.  
  27. @font-face {
  28. font-family: 'Magica';
  29. src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  30. }
  31.  
  32. .main {
  33. /* do not modify this! */
  34.  
  35. height: 220px;
  36. width: 100%;
  37. padding:10px;
  38.  
  39. /* border & bg only modify this!*/
  40. background: white;
  41. border-width:7px;
  42. border-style:solid;
  43. border-image: url("https://i.imgur.com/8Tk8PKV.gif") 7 fill round;
  44. /* do not modify this! */
  45. overflow: hidden;
  46. transition: 0.5s;
  47.  
  48. }
  49.  
  50. .main .activator {
  51. /* do not modify this! */
  52. height: 220px;
  53. width: 100%;
  54. float: left;
  55. display: block;
  56. transition: 0.5s;
  57. }
  58.  
  59. .img {
  60. /* CSS of your image! i'd recommend you don't modify this */
  61. text-align: center;
  62. height: 185px;
  63. width: 100%;
  64. object-fit: cover;
  65. float: left;
  66. margin-bottom: 10px;
  67. transition: 0.5s;
  68.  
  69. }
  70. .content {
  71. /* do not modify this! */
  72. display: none;
  73. margin-top: 15px;
  74. transition: 0.5s;
  75.  
  76. }
  77. .main:hover {
  78. /* CSS of the height after you hover it! i'd recommend you don't modify this */
  79. height: 325px;
  80. transition: 0.5s;
  81.  
  82. }
  83. .main:hover .content {
  84. /* do not modify this! */
  85. display: block;
  86. white-space: normal;
  87. height: 350px;
  88. transition: 0.5s;
  89. }
  90. .activator:hover .img {
  91. /* do not modify this! */
  92. float: left;
  93. }
  94.  
  95. #scroller {
  96. /* CSS of the scroll box ! (text) */
  97. width: 100%;
  98. margin-top: 10px;
  99. font-family: 'Magica';
  100. font-size: 0.9em;
  101. color: black;
  102. padding: 5px;
  103. transition: 0.5s;
  104. overflow: scroll;
  105. height:100px;
  106. }
  107.  
  108. mark {
  109. /* CSS of mark ! (highlighted text) */
  110. background: #ffe3ed;
  111. font-family: 'cutie';
  112. font-size: 1em;
  113. color: #3c3c3c;
  114. padding-left: 6px;
  115. padding-right: 6px;
  116. padding-top: 1px;
  117. padding-bottom: 1px;
  118. border-radius: 0.375em;
  119. border: 1.5px solid black;
  120. }
  121.  
  122. </style>
  123. <!-- HTML -->
  124. <div class='main'>
  125. <div class='activator'>
  126. <!-- add the link of your image here -->
  127. <img class=img src="https://data.whicdn.com/images/172962196/original.jpg">
  128.  
  129. <div class="content">
  130. <div id="scroller">
  131. <div align=left>
  132.  
  133. <!--here goes your text of the scrollbox!!! -->
  134. <mark>about</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 text text text text text text text text text text text text text text text text text text text text
  135. <br><br>
  136. <mark>interests</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 text text text text text text text text text text text text text text text text text text text text
  137. <br><br>
  138. <mark>rules</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 text text text text text text text text text text text text text text text text text text text text
  139. <br><br>
  140. <mark>media</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 text text text text text text text text text text text text text text text text text text text text
  141. <br><br>
  142. <mark>music</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 text text text text text text text text text text text text text text text text text text text text
  143. <br><br>
  144. <strong>cr ciarispop for the code!</strong>
  145.  
  146. </div>
  147. </div>
  148.  
  149. </div>
  150. </div>
  151. </div>
Add Comment
Please, Sign In to add comment