shadowprince

About page 1

May 10th, 2020
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="//www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--
  5. It's an about page, hope you like it!
  6. -->
  7.  
  8. <head>
  9.  
  10. <title>{Title}</title>
  11.  
  12. <link rel="shortcut icon" href="{Favicon}">
  13.  
  14. <!-- this is the tooltip, which basically changes what it looks like when you lover the links -->
  15. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  16. <script src="//static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  17. <script>
  18. (function($){
  19. $(document).ready(function(){
  20. $("a[title]").style_my_tooltips({
  21. tip_follows_cursor:true,
  22. tip_delay_time:500,
  23. tip_fade_speed:150,
  24. attribute:"title"
  25. });
  26. });
  27. })(jQuery);
  28. </script>
  29.  
  30. <link href="https://fonts.googleapis.com/css2?family=Rubik:wght@700&display=swap" rel="stylesheet">
  31. <link href="https://fonts.googleapis.com/css2?family=ABeeZee&display=swap" rel="stylesheet">
  32.  
  33. <style type="text/css">
  34. /* to change colors, simply replace the hex codes I have with ones of your desire. You can edit the font-size and font-family if you want */
  35.  
  36. #s-m-t-tooltip {
  37. margin:20px;
  38. padding:10px;
  39. background:#000;
  40. border-radius:2px;
  41. font-family: 'ABeeZee', sans-serif;
  42. font-size:12px;
  43. color:#ce235d;
  44. letter-spacing:1px;
  45. text-transform:uppercase;
  46. z-index:99;
  47. max-width:100px;
  48. }
  49.  
  50. body {
  51. background-color:#0d090a;
  52. font-size:11px;
  53. font-family: 'ABeeZee', sans-serif;
  54. color:#ed3273;
  55. margin:0px;
  56. }
  57.  
  58. a {
  59. text-decoration:none;
  60. color:#2d1d26;
  61. }
  62.  
  63. /* this just holds everything in the center */
  64. #bigthing {
  65. margin:0px auto;
  66. top:0px;
  67. bottom:0px;
  68. left:0px;
  69. right:0px;
  70. position:fixed;
  71. width:900px;
  72. height:400px;
  73. background:transparent;
  74. }
  75.  
  76. /* what it says on the box, where the text is, the gradient doesn't have to have a transparency, find what xolors work and change it up! */
  77. #textspace {
  78. margin-left:300px;
  79. margin-top:300px;
  80. height:190px;
  81. width:460px;
  82. font-size:11px;
  83. letter-spacing:1px;
  84. text-align:right;
  85. line-height:150%;
  86. padding:20px;
  87. font-family: 'ABeeZee', sans-serif;
  88. text-transform:none;
  89. background-image:linear-gradient(to right, transparent 0%, #150e11 100%);
  90. position:absolute;
  91. border-right:2px dashed #ce235d;
  92. border-bottom:2px dashed #ce235d;
  93. }
  94.  
  95. /* this is the title, if you want it longer I'd suggest editing the font size, you can edit the stroke too */
  96. #title {
  97. font-family: 'Rubik', sans-serif;
  98. font-size:50px;
  99. text-transform:uppercase;
  100. -webkit-text-stroke: 2px #9f295d;
  101. color:#2d1d26;
  102. position:absolute;
  103. margin-top:240px;
  104. margin-left:415px;
  105. z-index:-2;
  106. }
  107.  
  108. #links {
  109. position:absolute;
  110. margin-top:530px;
  111. margin-left:590px;
  112. width:500px;
  113. }
  114.  
  115. /* these are the links at the bottom and they don't have to be this big, change this css any way you wanf! */
  116. #links a {
  117. font-family: 'Rubik', sans-serif;
  118. font-size:50px;
  119. text-transform:uppercase;
  120. -webkit-text-stroke: 2px #9f295d;
  121. color:#2d1d26;
  122. display:inline-block;
  123. width:70px;
  124. }
  125.  
  126. #corn {
  127. position:absolute;
  128. margin-top:-10px;
  129. margin-left:-150px;
  130. z-index:-1;
  131. }
  132.  
  133. </style>
  134.  
  135. </head>
  136.  
  137. <body>
  138.  
  139. <div id="bigthing">
  140. <div id="corn"><img src="https://i.imgur.com/AlDc9UV.png"></div><!--change the image here, simply replace the URL -->
  141. <div id="title">dragon's lair</div> <!--The same with the title but don't make it very long unless you change the font size -->
  142. <div id="links">
  143. <a href="/" title="home">01</a> <!-- Type in different urls for links you want -->
  144. <a href="/ask" title="ask">02</a>
  145. <a href="/archive" title="archive">03</a>
  146. </div>
  147. <div id="textspace">Here is where you can type in your text. A couple of paragraphs at the most. </div>
  148. </div>
  149.  
  150. </body>
  151. </html>
Add Comment
Please, Sign In to add comment