Advertisement
fakehelper

Sugar On The Rim - PNG

Jul 25th, 2020 (edited)
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5.  
  6. sugar on the rim (gif pack page #3) by fakehelper
  7.  
  8. credits
  9. - google fonts
  10. - adobe fonts
  11. - honeybee icon font
  12. - gradient background by shudesigns
  13. - tumblr controls by cyantists
  14.  
  15. colors
  16. - gradient: #c1ddee,#a9d7f4
  17. - blue: #3467eb
  18. - pink: #da9698
  19.  
  20. png
  21. - use ctrl+f to find png
  22. - should be 150x200
  23.  
  24. -->
  25.  
  26. <title>{Title}</title>
  27. <link rel="shortcut icon" href="{Favicon}">
  28.  
  29. <link href="https://static.tumblr.com/51fnf0s/BCoprzst5/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  30. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  31. <script src="https://static.tumblr.com/51fnf0s/lKGprzsse/jquery.style-my-tooltips.js"></script>
  32. <script>
  33. (function($){
  34. $(document).ready(function(){
  35. $("[title]").style_my_tooltips({
  36. tip_follows_cursor:true,
  37. tip_delay_time:300,
  38. tip_fade_speed:300,
  39. attribute:"title"
  40. });
  41. });
  42. })(jQuery);
  43. </script>
  44.  
  45. <!--- pop up --->
  46. <script type="text/javascript" src="https://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
  47. <script type="text/javascript"
  48. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  49. <script>
  50. $(document).ready(function() {
  51. //
  52. $('a.poplight[href^=#]').click(function() {
  53. var popID = $(this).attr('rel'); //Get Popup Name
  54. var popURL = $(this).attr('href'); //Get Popup href to define size
  55. var query= popURL.split('?');
  56. var dim= query[1].split('&');
  57. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  58. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  59. var popMargTop = ($('#' + popID).height() + 80) / 2;
  60. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  61. //Apply Margin to Popup
  62. $('#' + popID).css({
  63. 'margin-top' : -popMargTop,
  64. 'margin-left' : -popMargLeft
  65. });
  66. $('body').append('<div id="fade"></div>');
  67. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  68. return false;
  69. });
  70. $('a.close, #fade').live('click', function() {
  71. $('#fade , .popup_block').fadeOut(function() {
  72. $('#fade, a.close').remove(); //fade them both out
  73. });
  74. return false;
  75. });
  76. });
  77. </script>
  78.  
  79.  
  80. <!--- fonts --->
  81. <link href="//solrainha.github.io/honeybee/honeybee.css" rel="stylesheet">
  82.  
  83. <link rel="stylesheet" href="https://use.typekit.net/ipc6xne.css">
  84.  
  85. <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Karla:400,700|Lato:400,700|Open+Sans:400,700|Roboto:400,700" />
  86.  
  87. <style type="text/css">
  88.  
  89.  
  90.  
  91. /* tumblr controls by cyantists */
  92. iframe.tmblr-iframe {
  93. z-index:99999999999999!important;
  94. top:0!important;
  95. right:0!important;
  96. opacity:0.4;
  97. /* delete invert(1) from here */
  98. filter:invert(1) contrast(150%);
  99. -webkit-filter:invert(1) contrast(150%);
  100. -o-filter:invert(1) contrast(150%);
  101. -moz-filter:invert(1) contrast(150%);
  102. -ms-filter:invert(1) contrast(150%);
  103. /* to here if your blog has a dark background */
  104. transform:scale(0.65);
  105. transform-origin:100% 0;
  106. -webkit-transform:scale(0.65);
  107. -webkit-transform-origin:100% 0;
  108. -o-transform:scale(0.65);
  109. -o-transform-origin:100% 0;
  110. -moz-transform:scale(0.65);
  111. -moz-transform-origin:100% 0;
  112. -ms-transform:scale(0.65);
  113. -ms-transform-origin:100% 0;}
  114.  
  115. iframe.tmblr-iframe:hover {
  116. opacity:0.6!important;}
  117.  
  118. #s-m-t-tooltip{
  119. /* basic */
  120. max-width:300px;
  121. z-index:10;
  122. padding:5px;
  123. background:#222;
  124. font-family:'karla';
  125. font-size:11px;
  126. text-transform:uppercase;
  127. color:#fff;
  128. border:none;
  129. box-shadow:none;
  130. }
  131.  
  132. /* Scrollbar styles */
  133. ::-webkit-scrollbar {
  134. width: 5px;
  135. height: 5px;
  136. }
  137.  
  138. ::-webkit-scrollbar-track {
  139. border-radius: 5px;
  140. width: 2px;
  141. border: none;
  142. background-color:none;
  143. }
  144.  
  145. ::-webkit-scrollbar-thumb {
  146. background: #da9698;
  147. border-radius: 10px;
  148. }
  149.  
  150. ::-webkit-scrollbar-thumb:hover {
  151. background: #fff;
  152. }
  153.  
  154.  
  155. body {
  156. color:#fff;
  157. overflow:hidden;
  158. }
  159.  
  160. #background{
  161. position:fixed;
  162. top:0px;
  163. left:0px;
  164. width:100%;
  165. height:100%;
  166. z-index:-9999;
  167. background: #f1efef;
  168. /* change gradient here! on all of these guys tho bc they're for diff browsers */
  169. background: -webkit-linear-gradient(#c1ddee,#a9d7f4);
  170. background: -o-linear-gradient(#c1ddee,#a9d7f4);
  171. background: -moz-linear-gradient(#c1ddee,#a9d7f4);
  172. background: linear-gradient(#c1ddee,#a9d7f4);
  173. overflow:none;
  174. }
  175.  
  176. p {
  177. color:#fff;
  178. font-family:'karla';
  179. font-size:12px;}
  180.  
  181.  
  182. a, b {
  183. color:#da9698;
  184. text-decoration:none;
  185. font-weight:bold;}
  186.  
  187.  
  188.  
  189. #berry {
  190. width:150px;
  191. height:200px;
  192. background:none;
  193. margin-left:75px;
  194. z-index:1;
  195. position:absolute;
  196. margin-top:-30px;
  197. border-radius:10px;
  198. }
  199.  
  200. #fruit {
  201. width:140px;
  202. height:140px;
  203. background-color:#da9698; /* CHANGE ICON BG COLOR HERE */
  204. margin-left:80px;
  205. margin-top:30px;
  206. border-radius:10px;
  207. z-index:99999;
  208. }
  209.  
  210. #treetop {
  211. top:20%;
  212. left:45px;
  213. padding-bottom:0px;
  214. width:300px;
  215. height:500px;
  216. text-align;center;
  217. position:fixed;
  218. z-index:9999;
  219. }
  220.  
  221. #treetop h1 {
  222. font-family: 'ohno-blazeface', sans-serif;
  223. font-weight: 700;
  224. font-style: normal;
  225. color:#3467eb;
  226. font-size:30px;
  227. margin-top:5px;
  228. margin-bottom:-10px;
  229. line-height:30px;
  230. text-transform:uppercase;
  231. letter-spacing:1px;
  232. z-index:1;
  233.  
  234. }
  235.  
  236.  
  237. #treetop h2 {
  238. height:20px;
  239. color:#222;
  240. font-family:'karla';
  241. font-style:italic;
  242. font-weight:bold;
  243. font-size:13px;
  244. line-height:20px;
  245. text-transform:uppercase;
  246. margin-bottom:10px;
  247. border-radius:50px;
  248.  
  249. }
  250.  
  251.  
  252. .roots p {
  253. padding:10px;
  254. color:#111;
  255. height:auto;
  256. width:auto;
  257. background-color:#fff;
  258. border-radius:10px;
  259. }
  260.  
  261.  
  262. /* container */
  263. #trunk {
  264. width:75%;
  265. height:90%;
  266. margin-top:25px;
  267. right:1.5%;
  268. padding:0px, 0px, -50px, 0px;
  269. text-align;center;
  270. display:inline-block;
  271. position:fixed;
  272. overflow:scroll;
  273. }
  274.  
  275. #trunk img {
  276. padding-right:4px;
  277. padding-bottom:1px;
  278. }
  279.  
  280.  
  281. /* episode titles */
  282. .branch {
  283. width:300px;
  284. height:28px;
  285. background: #da9698;
  286. margin-bottom:20px;
  287. border-radius:50px;
  288.  
  289. }
  290.  
  291. .branch h3{
  292. color:#fff;
  293. padding-top:4px;
  294. font-family:'karla';
  295. font-size:13px;
  296. line-height:20px;
  297. font-weight:bold;
  298. text-transform:uppercase;
  299.  
  300. }
  301.  
  302. .branch h3:before {
  303. content:'\eb9d'; /* change icon here for footage/episode titles using honeybee font */
  304. font-family:'honeybee';
  305. font-size:12px;
  306. line-height:12px;
  307. font-weight:normal;
  308. padding-right:6px;
  309. padding-top:4px;
  310.  
  311. }
  312.  
  313.  
  314. /* dont u do it */
  315. .credit {
  316. font:'honeybee';
  317. font-size:16px;
  318. bottom:1%;
  319. right:1%;
  320. position:fixed;
  321. z-index:111
  322. }
  323.  
  324. .credit a {
  325. color:#da9698;
  326. }
  327.  
  328. .credit a:hover {
  329. color:#fff;
  330. -webkit-transition: all .3s;
  331. -moz-transition: all .3s;
  332. -o-transition: all .3s;
  333. -ms-transition: all .3s;
  334. transition: all .3s;
  335. }
  336.  
  337. </style>
  338. </head>
  339. <body>
  340.  
  341. <div class="credit"><a class="th th-leaf-1-o" title="page theme by fakehelper" href="https://fakehelper.tumblr.com/"></a></div><!--don't touch this pls it took me forever like plS donut do it-->
  342.  
  343. <div id="background"></div>
  344. </div>
  345.  
  346.  
  347. <div id="treetop">
  348. <div id="berry"><img src="https://placehold.it/150X200"/></div><!-- insert png here! -->
  349. <div id="fruit"></div>
  350. <center><h1>Faceclaim Name</h1>
  351. <h2>• Footage (Year) •</h2>
  352.  
  353. <div class="roots">
  354. <p>Sidebar info here.
  355. </p>
  356. </center>
  357. </div>
  358.  
  359. </div>
  360.  
  361.  
  362. <div id="trunk"><center>
  363. <div class="branch">
  364. <h3>Footage (Year): ### gifs</h3>
  365. </div>
  366. <p>
  367. copy/paste your gif urls here! here's a tutorial on how to do it! follow up to step 3 and paste here <!---https://fakehelper.tumblr.com/post/165251280731/hey-there-kiddos-ive-had-a-couple-people-ask-me --->
  368. </p>
  369.  
  370.  
  371. </center>
  372. </div>
  373.  
  374.  
  375. </body>
  376. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement