Advertisement
VampyJuMp

Himikotoga Crd Code

Dec 24th, 2021
1,772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.21 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family: 'Magica';
  4. src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  5. }
  6. @font-face {
  7. font-family: kitten;
  8. src: url(https://dl.dropbox.com/s/iu9a60e3nidrio6/KittenSlantTrial.ttf);
  9. }
  10. .img { /*Css Of The Image Bubble*/
  11. border: 4px double black;
  12. border-radius: 50%; /*Don’t Change This*/
  13. width: 250px; /*Don’t Change This*/
  14. height: 250px; /*Don’t Change This*/
  15. background-color: white;
  16. /*Don’t Edit Past Here*/
  17. margin: auto;
  18. position: absolute;
  19. top: -1.0em;
  20. left: 2.5em;
  21. z-index: 50;
  22. -moz-transition: 0.8s;
  23. -webkit-transition: 0.8s;
  24. -o-transition: 0.8s;
  25. }
  26. .hide { /*Css Of The Text Bubble*/
  27. border: 4px double black;
  28. border-radius: 50%; /*Don’t Change This*/
  29. width: 250px; /*Don’t Change This*/
  30. height: 250px; /*Don’t Change This*/
  31. padding: 30px 5px 30px 5px; /*Don’t Change This*/
  32. background-color: white;
  33. overflow-y: scroll; /*Don’t Change This*/
  34. font-family: 'Magica';
  35. font-size: 1.2em;
  36. /*Don’t Edit Past Here*/
  37. position: absolute;
  38. top: -1em;
  39. left: 2.5em;
  40. z-index: 1;
  41. opacity: 0;
  42. text-align: center;
  43. -ms-overflow-style: none;
  44. scrollbar-width: none;
  45. -moz-transition: 0.8s;
  46. -webkit-transition: 0.8s;
  47. -o-transition: 0.8s;
  48. }
  49. .hide::-webkit-scrollbar {
  50. display: none;
  51. }
  52. mark { /*Css Of The Title*/
  53. text-shadow: -1px 0 #000000, 0 1px #000000, 1px 0 #000000, 0 -1px #000000;
  54. color: white;
  55. font-family: kitten;
  56. font-size: 1.8em;
  57. background: #FFFFFF00; /*Don’t Change Unless You Want A Background*/
  58. }
  59. label { /*Don’t Edit This*/
  60. opacity: 0;
  61. border-radius: 50%;
  62. width: 250px;
  63. height: 250px;
  64. margin: auto;
  65. position: absolute;
  66. top: -1.0em;
  67. left: 2.5em;
  68. z-index: 99;
  69. }
  70. .visually-hidden { /*Don’t Edit This*/
  71. position: absolute;
  72. left: -100vw;
  73. opacity: 0;
  74. }
  75. #toggle:checked ~ .img { /*Don’t Edit This*/
  76. position: absolute;
  77. top: -1.5em;
  78. left: -1.0em;
  79. z-index: 50;
  80. }
  81. #toggle:checked ~ .hide { /*Don’t Edit This*/
  82. opacity: 1;
  83. position: absolute;
  84. top: 6em;
  85. left: 7em;
  86. z-index: 99;
  87. }
  88. </style>
  89.  
  90. <label for="toggle">Toggle</label>
  91. <input type="checkbox" id="toggle" class="visually-hidden"> <img src="IMAGELINK" class="img">
  92. <div class=hide> <p><mark>TITLE</mark></p>
  93. <p>Text Text Text Text Text Text Text Text</p> </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement