Advertisement
softcodesthemes

hazelnut / about page

Feb 27th, 2021
2,083
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.09 KB | None | 0 0
  1. <!------------------------------------------------------------------------
  2.  
  3.  
  4.  
  5. hazelnut // by @softcodes
  6.  
  7.  
  8.  
  9. ------------------------------------------------------------------------->
  10. <!DOCTYPE html>
  11. <html>
  12. <head>
  13. <title>{Title}</title>
  14.  
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. <meta charset="utf-8">
  18. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  19.  
  20. <!-- google fonts -->
  21.  
  22. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap" rel="stylesheet">
  23.  
  24. <!-- scripts -->
  25.  
  26. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
  27. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  28.  
  29. <script>
  30. (function($){
  31. $(document).ready(function(){
  32. $("a[title]").style_my_tooltips({
  33. tip_follows_cursor:true,
  34. tip_delay_time:90,
  35. tip_fade_speed:300,
  36. attribute:"title"
  37. });
  38. });
  39. })(jQuery);
  40. </script>
  41.  
  42. <style type="text/css">
  43.  
  44. /* ---------------------- change colors & font here --------------------- */
  45.  
  46. :root {
  47. --accent:#cfb095; /* accent color */
  48. --link-hover-color:#ffffff; /* link text color on hover */
  49. --bg-color:#ffffff; /* background color */
  50. --headings:#222222; /* headings */
  51. --borders:#eaeaea; /* border */
  52.  
  53. --body-font:'Open Sans'; /* body font */
  54. --text-size:11px; /* body font size */
  55. --body-color:#555555; /* text color */
  56. }
  57.  
  58. /* ---------------------------------------------------------------------- */
  59.  
  60. @-webkit-keyframes fadein {
  61. 0% {opacity: 0;}
  62. 100% { opacity: 1; }}
  63.  
  64. @-moz-keyframes fadein {
  65. 0% { opacity: 0; }
  66. 100% { opacity: 1; }}
  67.  
  68. @keyframes fadein {
  69. 0% { opacity: 0; }
  70. 100% { opacity: 1; }}
  71.  
  72. /*----- BASIC STYLING -----*/
  73.  
  74. #s-m-t-tooltip {
  75. max-width:300px;
  76. margin-top:-35px;
  77. margin-left:0px;
  78. font-size:9px;
  79. letter-spacing:1.25px;
  80. font-weight:500;
  81. padding:1px 7px;
  82. text-align:center;
  83. text-transform:uppercase;
  84. color:#aaaaaa;
  85. background-color:#fff;
  86. z-index:999999;
  87. }
  88.  
  89. body {
  90. font-family:var(--body-font);
  91. font-size:var(--text-size);
  92. text-align:left;
  93. line-height:1.55em;
  94. letter-spacing:0.5px;
  95. color:var(--body-color);
  96. background-color:#fff;
  97. -moz-osx-font-smoothing:grayscale;
  98. -webkit-font-smoothing:antialiased;
  99. font-smoothing:antialiased;
  100. -webkit-animation: fadein 1.3s;
  101. -moz-animation:fadein 1.3s;
  102. animation:fadein 1.3s;
  103. }
  104.  
  105. h1 {
  106. font-family:'Open Sans';
  107. font-size:var(--text-size);
  108. color:var(--headings);
  109. font-weight:700;
  110. margin:0 0 3px 0;
  111. padding:0px;
  112. font-size:11px;
  113. letter-spacing:1px;
  114. text-transform:uppercase;
  115. }
  116.  
  117. hr {
  118. width:30%;
  119. margin:35px 0 40px 0;
  120. border-width: 1px 0px 0px 0px;
  121. border-style:solid;
  122. border-color:var(--borders);
  123. }
  124.  
  125. #container {
  126. display:block;
  127. position:relative;
  128. top:125px;
  129. background-color:#fff;
  130. width:375px;
  131. height:auto;
  132. margin:auto;
  133. }
  134.  
  135. #container a {
  136. color:var(--body-color);
  137. text-decoration:none;
  138. background:
  139. linear-gradient(
  140. to bottom, var(--accent) 0%,
  141. var(--accent) 100% );
  142. background-position: 0 100%;
  143. background-repeat: repeat-x;
  144. background-size: 1px 1px;
  145. transition: .3s;
  146. }
  147.  
  148. #container a:hover {
  149. color:var(--link-hover-color);
  150. background-size: 2px 50px;
  151. }
  152.  
  153. .bio-heading {
  154. font-size:25px;
  155. -webkit-text-stroke: 1px var(--headings);
  156. -webkit-text-fill-color: transparent;
  157. font-family:'Open Sans';
  158. text-transform:uppercase;
  159. font-weight:800;
  160. letter-spacing:3px;
  161. text-shadow:2px 2px 0px var(--accent);
  162. margin-bottom:30px;
  163. }
  164.  
  165. .bio {
  166. padding:0px 0px 20px 0px;
  167. }
  168.  
  169. .links {
  170. display:grid;
  171. grid-template-columns:34% 34% 34%;
  172. }
  173.  
  174. .links span {
  175. display:block;
  176. }
  177.  
  178. .links a {
  179. display:inline-block;
  180. margin-bottom:2px;
  181. }
  182.  
  183. iframe.tmblr-iframe {display:none;}
  184.  
  185. /*---- credit - pls don't remove <3 -----*/
  186.  
  187. #credit {
  188. position: fixed;
  189. bottom: 20px;
  190. right: 25px;
  191. font-size: 15px;
  192. color:#aaaaaa;
  193. }
  194.  
  195. #credit a {
  196. color:#aaaaaa;
  197. }
  198.  
  199. </style>
  200. </head>
  201. <body>
  202.  
  203. <div id="container">
  204.  
  205. <div class="bio-heading">biography</div>
  206.  
  207. <!-- bio -->
  208.  
  209. <p><b>hi, i'm bebe!</b> lorem ipsum dolor <a href="/">sit amet</a>, consectetur adipiscing elit. integer nec odio. praesent libero. sed cursus ante dapibus diam. sed nisi. nulla quis sem at nibh elementum imperdiet. duis sagittis ipsum. praesent mauris. fusce nec tellus sed augue semper porta. mauris massa.</p>
  210.  
  211. <p>class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. curabitur sodales ligula in libero. sed dignissim lacinia nunc. <a href="/">curabitur tortor</a>. pellentesque nibh. aenean quam. in scelerisque sem at dolor. maecenas mattis.</p>
  212.  
  213. <hr/>
  214.  
  215. <!-- end bio -->
  216.  
  217.  
  218. <div class="links">
  219. <span>
  220. <h1>blogs</h1>
  221. <a href="/">writing</a><br/>
  222. <a href="/">aesthetics</a><br/>
  223. <a href="/">fandom</a><br/>
  224. </span>
  225.  
  226. <span>
  227. <h1>networks</h1>
  228. <a href="/">one</a><br/>
  229. <a href="/">two</a><br/>
  230. <a href="/">three</a><br/>
  231. </span>
  232.  
  233. <span>
  234. <h1>elsewhere</h1>
  235. <a href="/">pinterest</a><br/>
  236. <a href="/">instagram</a><br/>
  237. <a href="/">twitter</a><br/>
  238. </span>
  239.  
  240. </div>
  241.  
  242. </div><!-- end container -->
  243.  
  244. <!-- pls don't remove, thanks!<3 -->
  245.  
  246. <div id="credit"><a href="https://softcodes.tumblr.com" target="_blank" title="@softcodes"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 25 25" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg></a></div>
  247.  
  248.  
  249. </body>
  250. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement