Advertisement
Tsunland

lis matching

Nov 9th, 2022
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <title>𝐛𝐫𝐨𝐤𝐞𝐧 𝐛𝐢𝐫𝐝</title> <!--change the title of the page here! this will appear as the title at your current tab.-->
  4. <link rel="shortcut icon" href="{Favicon}">
  5.  
  6. <head>
  7. <!--
  8.  
  9. FAQ page #01 (Page #06): River
  10. coded by kuzuriha
  11.  
  12. 1. Don't remove the credit.
  13. 2. Don't move the credit. Just leave it there.
  14. 3. Don't use as a base code.
  15. 4. Please enjoy! If you find any bugs, please contact me! c:
  16.  
  17. -->
  18. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  19.  
  20. <script src="https://static.tumblr.com/wdp3vza/mAipd8pay/jquery.sticky-kit.min.js"></script>
  21.  
  22. <script src="https://static.tumblr.com/wdp3vza/pJvosgmgd/jquery.style-my-tooltips.js"></script>
  23.  
  24. <script>
  25.  
  26. (function($){
  27.  
  28. $(document).ready(function(){
  29.  
  30. $("a[title]").style_my_tooltips({
  31.  
  32. tip_follows_cursor:true,
  33.  
  34. tip_delay_time:0,
  35.  
  36. tip_fade_speed:0,
  37.  
  38. attribute:"title"
  39.  
  40. });
  41.  
  42. });
  43.  
  44. })(jQuery);
  45.  
  46. </script>
  47. <style type="text/css">
  48. @import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
  49. /**variables**/
  50. :root{
  51. --body:#1F1F1F;
  52. --accent:#D6E8FF;
  53. --bg:#F6F6F6;
  54. }
  55.  
  56. iframe.tmblr-iframe {
  57. z-index:99999999999999!important;
  58. top:0!important;
  59. right:0!important;
  60. opacity:0.4;
  61. /* delete invert(1) from here */
  62. filter:invert(1) contrast(150%);
  63. -webkit-filter:invert(1) contrast(150%);
  64. -o-filter:invert(1) contrast(150%);
  65. -moz-filter:invert(1) contrast(150%);
  66. -ms-filter:invert(1) contrast(150%);
  67. /* to here if your blog has a dark background */
  68. transform:scale(0.65);
  69. transform-origin:100% 0;
  70. -webkit-transform:scale(0.65);
  71. -webkit-transform-origin:100% 0;
  72. -o-transform:scale(0.65);
  73. -o-transform-origin:100% 0;
  74. -moz-transform:scale(0.65);
  75. -moz-transform-origin:100% 0;
  76. -ms-transform:scale(0.65);
  77. -ms-transform-origin:100% 0;}
  78.  
  79. iframe.tmblr-iframe:hover {
  80. opacity:0.6!important;}
  81.  
  82. ::-webkit-scrollbar{
  83. width:6px;
  84. }
  85.  
  86. ::-webkit-scrollbar-thumb:vertical{
  87. background:var(--accent);
  88. height:auto;
  89. }
  90.  
  91. ::selection{
  92. background:var(--accent);
  93. }
  94.  
  95. ::-moz-selection{
  96. background:var(--accent);
  97. }
  98.  
  99. body{
  100. margin:0;
  101. padding:0;
  102. font-family:'Muli';
  103. font-size:11px;
  104. color:var(--body);
  105. background:#F2EDE6;
  106. }
  107.  
  108. a{
  109. text-decoration:none;
  110. color:#a16464;
  111. }
  112.  
  113. #container{
  114. width:350px;
  115. margin:0 auto;
  116. margin-top:50px;
  117. }
  118.  
  119. #header{
  120. background:#fff;
  121. width:100%;
  122. height:120px;
  123. }
  124.  
  125. #icon{
  126. float:left;
  127. padding:20px;
  128. width:64px;
  129. margin:10px;
  130. height:64px;
  131. }
  132.  
  133. #icon img{
  134. width:64px;
  135. height:64px;
  136. max-width:64px;
  137. max-height:64px;
  138. }
  139.  
  140. #desc{
  141. width:200px;
  142. height:40px;
  143. font-size:10px;
  144. float:left;
  145. padding:10px;
  146. margin-top:30px;
  147. font-style:italic;
  148. }
  149.  
  150. #navlink{
  151. padding:20px;
  152. margin-top:33px;
  153. float:left;
  154. }
  155.  
  156. .navlink a{
  157. display:inline-block;
  158. margin-right:10px;
  159. box-shadow:inset 0 -3px 0 var(--accent);
  160. }
  161.  
  162. .question, .answer, .askbox{
  163. width:500px;
  164. position:relative;
  165. margin:0 auto;
  166. margin-top:15px;
  167. min-height:60px;
  168. padding:20px;
  169. }
  170.  
  171. .answer{
  172. margin-bottom:15px;
  173. }
  174.  
  175. .questionicon, .answericon{
  176. width:48px;
  177. height:48px;
  178. float:left;
  179. }
  180.  
  181. .answericon{
  182. float:right;
  183. }
  184.  
  185. .questionicon img, .answericon img{
  186. width:48px;
  187. height:48px;
  188. max-width:48px;
  189. max-height:48px;
  190. }
  191.  
  192. .question_text, .answer_text{
  193. text-align:justify;
  194. padding:15px;
  195. width:80%;
  196. }
  197.  
  198. .question_text{
  199. float:left;
  200. margin-left:20px;
  201. background:var(--accent);
  202. min-height:30px;
  203. }
  204.  
  205. .question_text a{
  206. font-weight:700;
  207. }
  208.  
  209. .answer_text{
  210. background:#fff;
  211. min-height:30px;
  212. }
  213.  
  214. .answer_text a{
  215. font-weight:700;
  216. box-shadow:inset 0 -3px 0 var(--accent);
  217. }
  218.  
  219. .askbox{
  220. background:#fff;
  221. width:310px;
  222. height:240px;
  223. margin-top:50px;
  224. margin-bottom:50px;
  225. }
  226.  
  227. #credit{
  228. position:fixed;
  229. bottom:10px;
  230. right:10px;
  231. padding:10px;
  232. text-align:center;
  233. min-width:30px;
  234. background:#fff;
  235. }
  236. </style>
  237. </head>
  238.  
  239. <body>
  240. <div id="container">
  241.  
  242. <div id="header">
  243. <div id="icon"><img src="https://64.media.tumblr.com/3d3ad71eb8b97a4866de5efaece2034b/tumblr_inline_rkvcwnhne61xmkows_500.png"/><!--change the icon image here!--></div>
  244.  
  245. <div id="desc">
  246. <!--this is your description. keep it short, please!-->
  247. real darkness has love for a face.
  248. <br>
  249. the first death is in the heart.
  250. <p>
  251. <a href="https://lumoire.carrd.co/">please read the carrd before interacting.</a>
  252. </div><!--end desc-->
  253.  
  254.  
  255.  
  256. </div><!--end header-->
  257.  
  258. <!--
  259.  
  260. Attention!
  261.  
  262. To use this page, you have to manually copy and paste the whole portion of code below. I've labeled the chuck of code you have to copy, and remember to copy them BEFORE the div where it says askbox.
  263.  
  264. -->
  265.  
  266.  
  267.  
  268. <!--askbox-->
  269. <div class="askbox">
  270. <!--to enable the askbox, replace where it says YOUR URL HERE with your own blog URL. Bear in mind that you need to have your askbox enabled to enable this askbox.-->
  271.  
  272. <iframe frameborder="0" scrolling="no" width="100%" height="175" src="https://www.tumblr.com/ask_form/lumoire.tumblr.com" style="background-color: transparent; overflow: hidden; height: 190px;" id="ask_form"></iframe>
  273. </div>
  274.  
  275. </div><!--end container-->
  276.  
  277. <!--credit. please do not remove this!-->
  278. <div id="credit"><a href="//kuzuriha.tumblr.com">thm</a></div>
  279. </body>
  280. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement