Advertisement
heavenlydoctor

all in one page #3

Dec 28th, 2014
977
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!---okay guys dont steal, theme by amywiiliams prev. clarascapaldis, you know the drill, instructions are in the code, okay enjoy--->
  5.  
  6. <title>Navigation</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9.  
  10. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  11.  
  12. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  13.  
  14. <script>
  15.  
  16. (function($){
  17.  
  18. $(document).ready(function(){
  19.  
  20. $("a[title]").style_my_tooltips({
  21.  
  22. tip_follows_cursor:true,
  23.  
  24. tip_delay_time:100,
  25.  
  26. tip_fade_speed:300,
  27.  
  28. attribute:"title"
  29.  
  30. });
  31.  
  32. });
  33.  
  34. })(jQuery);
  35.  
  36. </script>
  37.  
  38.  
  39.  
  40. <script>
  41. $(document).ready(function(){
  42. $(".t1, .close1").click(function(){
  43. if ($( ".b.one" ).hasClass( "big" )) {
  44. setTimeout(function() {
  45. $('.four, .two, .three').toggleClass('small');
  46. }, 700);
  47. setTimeout(function() {
  48. $('.b.one').toggleClass('big');
  49. $('.t1').fadeToggle(300);
  50. }, 400);
  51. $('.stuff').fadeToggle(300);
  52. } else {
  53. setTimeout(function() {
  54. $('.b.one').toggleClass('big');
  55. }, 200);
  56. setTimeout(function() {
  57. $('.stuff').fadeToggle(300);
  58. }, 600);
  59. $('.four, .two, .three').toggleClass('small');
  60. $('.t1').fadeToggle(300);
  61. }
  62. });
  63. });
  64. </script>
  65.  
  66. <script>
  67. $(document).ready(function(){
  68. $(".t2, .close2").click(function(){
  69. if ($( ".b.two" ).hasClass( "big" )) {
  70. setTimeout(function() {
  71. $('.four, .one, .three').toggleClass('small');
  72. }, 700);
  73. setTimeout(function() {
  74. $('.b.two').toggleClass('big');
  75. $('.t2').fadeToggle(300);
  76. }, 400);
  77. $('.stuff').fadeToggle(300);
  78. } else {
  79. setTimeout(function() {
  80. $('.b.two').toggleClass('big');
  81. }, 200);
  82. setTimeout(function() {
  83. $('.stuff').fadeToggle(300);
  84. }, 600);
  85. $('.four, .one, .three').toggleClass('small');
  86. $('.t2').fadeToggle(300);
  87. }
  88. });
  89. });
  90. </script>
  91.  
  92. <script>
  93. $(document).ready(function(){
  94. $(".t3, .close3").click(function(){
  95. if ($( ".b.three" ).hasClass( "big" )) {
  96. setTimeout(function() {
  97. $('.four, .two, .one').toggleClass('small');
  98. }, 700);
  99. setTimeout(function() {
  100. $('.b.three').toggleClass('big');
  101. $('.t3').fadeToggle(300);
  102. }, 400);
  103. $('.stuff').fadeToggle(300);
  104. } else {
  105. setTimeout(function() {
  106. $('.b.three').toggleClass('big');
  107. }, 200);
  108. setTimeout(function() {
  109. $('.stuff').fadeToggle(300);
  110. }, 400);
  111. $('.four, .two, .one').toggleClass('small');
  112. $('.t3').fadeToggle(300);
  113. }
  114. });
  115. });
  116. </script>
  117.  
  118. <script>
  119. $(document).ready(function(){
  120. $(".t4, .close4").click(function(){
  121. if ($( ".b.four" ).hasClass( "big" )) {
  122. setTimeout(function() {
  123. $('.one, .two, .three').toggleClass('small');
  124. }, 700);
  125. setTimeout(function() {
  126. $('.b.four').toggleClass('big');
  127. $('.t4').fadeToggle(300);
  128. }, 400);
  129. $('.stuff').fadeToggle(300);
  130. } else {
  131. setTimeout(function() {
  132. $('.b.four').toggleClass('big');
  133. }, 200);
  134. setTimeout(function() {
  135. $('.stuff').fadeToggle(300);
  136. }, 600);
  137. $('.one, .two, .three').toggleClass('small');
  138. $('.t4').fadeToggle(300);
  139. }
  140. });
  141. });
  142. </script>
  143.  
  144. <link href='http://fonts.googleapis.com/css?family=Raleway:200,400' rel='stylesheet' type='text/css'>
  145.  
  146. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  147.  
  148. <style type="text/css">
  149.  
  150. .b.one.big, .b.two.big, .b.three.big, .b.four.big {
  151. width:510px;
  152. height:510px;
  153. background:#eee; /*background of the tabs after they expand*/
  154. -webkit-transition: 0.5s;
  155. -moz-transition: 0.5s;
  156. transition: 0.5s;
  157. }
  158.  
  159. .b.one.big {
  160. left:0;
  161. top:0;
  162. }
  163.  
  164. .b.two.big {
  165. right:0;
  166. top:0;
  167. }
  168.  
  169. .b.three.big {
  170. left:0;
  171. bottom:0;
  172. }
  173.  
  174. .b.four.big {
  175. right:0;
  176. bottom:0;
  177. }
  178.  
  179. .b.small {
  180. -webkit-transform:scale(0);
  181. -moz-transform:scale(0);
  182. -o-transform:scale(0);
  183. -ms-transform:scale(0);
  184. transform:scale(0);
  185. }
  186.  
  187. #s-m-t-tooltip {
  188. max-width:150px;
  189. padding:5px 8px;
  190. margin:20px 14px 7px 10px;
  191. background-color:#fff;
  192. font-family:Calibri;
  193. font-size:10px;
  194. line-height:11px;
  195. letter-spacing:1px;
  196. text-transform:uppercase;
  197. border:1px solid #777;
  198. z-index:99999999;
  199. }
  200.  
  201. ::-webkit-scrollbar {
  202. height:3px;
  203. width:2px;
  204. background-color: #fff;
  205. }
  206.  
  207. ::-webkit-scrollbar-thumb {
  208. background-color: #555; /*scrollbar color*/
  209. height:auto;
  210. border-bottom:none;
  211. }
  212.  
  213. ::selection {
  214. background-color: #000;
  215. color: #fff;
  216. }
  217.  
  218. body {
  219. background-color: #f7f7f7; /*change whole page background color*/
  220. font-family:arial;
  221. color:#777;
  222. }
  223.  
  224. a {
  225. text-decoration:none;
  226. color:#bbb; /*color of link*/
  227. }
  228.  
  229. a:hover {
  230. color:#777; /*color of hovered link*/
  231. }
  232.  
  233. b {
  234. color:#555; /*color of bolded text*/
  235. }
  236.  
  237. .con {
  238. background:#fff; /*change color of the borders around the four squares*/
  239. width:510px;
  240. height:510px;
  241. position:fixed;
  242. margin:auto;
  243. top:0;
  244. bottom:0;
  245. left:0;
  246. right:0;
  247. }
  248.  
  249. .b {
  250. width:230px;
  251. height:230px;
  252. background-color: #f7f7f7; /*change background of the tabs before they are expanded */
  253. position:absolute;
  254. -webkit-transition: 0.5s;
  255. -moz-transition: 0.5s;
  256. transition: 0.5s;
  257. }
  258.  
  259. .b:hover {
  260. background:#f1f1f1; /*change tabs background color on hover*/
  261. }
  262.  
  263. .b.one {
  264. top:15px;
  265. left:15px;
  266. }
  267.  
  268. .b.two {
  269. top:15px;
  270. right:15px;
  271. }
  272.  
  273. .b.three {
  274. bottom:15px;
  275. left:15px;
  276. }
  277.  
  278. .b.four {
  279. bottom:15px;
  280. right:15px;
  281. }
  282.  
  283. .top {
  284. background:#aaa; /*change background color of the top bar where the close button is*/
  285. position:absolute;
  286. left:0;
  287. right:0;
  288. top:0;
  289. padding:8px;
  290. }
  291.  
  292. .t {
  293. position:absolute;
  294. left:0;
  295. right:0;
  296. top:0;
  297. bottom:0;
  298. text-align:center;
  299. padding:100px 0px;
  300. letter-spacing:3px;
  301. font-size:30px;
  302. font-weight:300;
  303. font-family:'Raleway', sans-serif;
  304. text-transform:uppercase;
  305. cursor:pointer;
  306. }
  307.  
  308. .stuff {
  309. display:none;
  310. }
  311.  
  312. .top a {
  313. padding:5px;
  314. font-size:10px;
  315. letter-spacing:2px;
  316. text-transform:uppercase;
  317. color:#fff; /*change color of close button*/
  318. float:right;
  319. border:2px solid #fff; /*change color of close button border*/
  320. }
  321.  
  322. .side {
  323. position:absolute;
  324. top:60px;
  325. bottom:15px;
  326. width:170px;
  327. right:15px;
  328. }
  329.  
  330. .side img {
  331. width:120px;
  332. margin-bottom:5px;
  333. height:120px;
  334. padding:25px;
  335. background:#fff;
  336. }
  337.  
  338. .q {
  339. padding:15px;
  340. background:#fff; /*change content background*/
  341. font-size:10px;
  342. margin-bottom:6px;
  343. text-align:center;
  344. text-transform:uppercase;
  345. letter-spacing:1px;
  346. }
  347.  
  348. .content, .ccontent {
  349. position:absolute;
  350. top:60px;
  351. bottom:15px;
  352. overflow:auto;
  353. padding:15px;
  354. box-sizing:border-box;
  355. left:15px;
  356. width:300px;
  357. text-transform:uppercase;
  358. font-size:11px;
  359. line-height:180%;
  360. letter-spacing:1px;
  361. background:#fff; /*change content background*/
  362. }
  363.  
  364. .ccontent {
  365. right:15px;
  366. width:auto;
  367. }
  368.  
  369. .tt {
  370. font-size:15px;
  371. letter-spacing:2px;
  372. margin:10px 0px;
  373. color:#555; /*change tags title text color*/
  374. }
  375.  
  376. .c1 a {
  377. padding:1px 5px;
  378. display:inline-block;
  379. width:90px;
  380. margin:5px 3px;
  381. color:#666; /*change tags text color*/
  382. border:1px solid #bbb; /*change tags border color*/
  383. }
  384.  
  385. .c1 a:hover {
  386. border-bottom:1px solid #777; /*change tags border hover color*/
  387. }
  388.  
  389. .links {
  390. position:absolute;
  391. bottom:-20px;
  392. text-align:right;
  393. letter-spacing:2px;
  394. text-transform:uppercase;
  395. font-size:10px;
  396. left:10px;
  397. right:10px;
  398. }
  399.  
  400. .links a {
  401. margin:0px 5px;
  402. }
  403.  
  404. </style>
  405. </head>
  406. <body>
  407.  
  408. <div class="con">
  409.  
  410. <div class="b one">
  411. <div class="t t1">about</div>
  412. <div class="stuff">
  413. <div class="top">
  414. <a href="javascript:;" class="close1">close</a>
  415. </div>
  416. <div class="side">
  417. <!---about image--->
  418. <img src="https://33.media.tumblr.com/e93b7a69c5f84cda6159ca4df28b3b34/tumblr_ngyempsyr11u692uio5_250.png">
  419. <!---end about image--->
  420.  
  421. <div class="q">
  422. <!---quote--->
  423. here is a quote about something you fancy
  424. </div>
  425.  
  426. <!---change these accordingly--->
  427. <div class="q">name: steph</div>
  428. <div class="q">age: fourteen</div>
  429. <div class="q">location: canada</div>
  430.  
  431. </div>
  432. <div class="content">
  433.  
  434. <!---description--->
  435. <p><b>bold</b> <i>italic</i> <u>underline</u> <a href="/">link</a>. remember to wrap each paragraph in < p > and < /p > tags!!</p>
  436. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum at quam tellus. Nullam interdum ligula ac malesuada accumsan. Proin cursus rhoncus fringilla. Phasellus eget mauris lectus. Sed egestas porta libero, vel sollicitudin urna porttitor nec. Quisque eget nisi vel nulla maximus interdum a quis dolor. Morbi eget eros risus. Donec id leo ut justo mollis consequat a id est.</p>
  437. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum at quam tellus. Nullam interdum ligula ac malesuada accumsan. Proin cursus rhoncus fringilla. Phasellus eget mauris lectus. Sed egestas porta libero, vel sollicitudin urna porttitor nec. Quisque eget nisi vel nulla maximus interdum a quis dolor. Morbi eget eros risus. Donec id leo ut justo mollis consequat a id est.</p>
  438. <!--end description--->
  439. </div>
  440. </div>
  441. </div>
  442.  
  443.  
  444. <div class="b two">
  445. <div class="t t2">tags</div>
  446. <div class="stuff">
  447. <div class="top">
  448. <a href="javascript:;" class="close2">close</a>
  449. </div>
  450. <div class="ccontent c1">
  451.  
  452. <!---copy and paste from here--->
  453. <div class="tt">tags title</div>
  454. <a href="/">tag</a>
  455. <a href="/">tag</a>
  456. <a href="/">tag</a>
  457. <a href="/">tag</a>
  458. <a href="/">tag</a>
  459. <a href="/">tag</a>
  460. <a href="/">tag</a>
  461. <a href="/">tag</a>
  462. <!---to here to add a new tags section--->
  463.  
  464. <div class="tt">tags title</div>
  465. <a href="/">tag</a>
  466. <a href="/">tag</a>
  467. <a href="/">tag</a>
  468. <a href="/">tag</a>
  469. <a href="/">tag</a>
  470. <a href="/">tag</a>
  471. <a href="/">tag</a>
  472. <a href="/">tag</a>
  473.  
  474. <div class="tt">tags title</div>
  475. <a href="/">tag</a>
  476. <a href="/">tag</a>
  477. <a href="/">tag</a>
  478. <a href="/">tag</a>
  479. <a href="/">tag</a>
  480. <a href="/">tag</a>
  481. <a href="/">tag</a>
  482. <a href="/">tag</a>
  483.  
  484. </div>
  485. </div>
  486. </div>
  487.  
  488.  
  489. <div class="b three">
  490. <div class="t t3">faq + ask</div>
  491. <div class="stuff">
  492. <div class="top">
  493. <a href="javascript:;" class="close3">close</a>
  494. </div>
  495. <div class="ccontent" style="text-align:center">
  496. here is where you put your faq.
  497. <!---question--->
  498. <p><b>Questions about life and the depth of our reality?</b> Answers that somewhat satisfy your curiosity.</p>
  499. <!---end question. remember to wrap each q&a in <p> and </p> tags, and wrap each question in <b> and </b> tags like shown above.--->
  500.  
  501. <p><b>Question?</b> Answers.</p>
  502. <p><b>There are more questions?</b> There are more answers.</p>
  503.  
  504.  
  505. <!---ask box (remember to change YOURURLHERE to your actual url or it won't work!)--->
  506. <iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/YOURURLHERE.tumblr.com" style="overflow:auto; margin-top:10px" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]-->
  507.  
  508. </div>
  509. </div>
  510. </div>
  511.  
  512.  
  513. <div class="b four">
  514. <div class="t t4">blogroll</div>
  515. <div class="stuff">
  516. <div class="top">
  517. <a href="javascript:;" class="close4">close</a>
  518. </div>
  519. <div class="ccontent" style="text-align:center">
  520. {block:Following}{block:Followed}
  521. <div style="display:inline-block; margin:7px" class="following">
  522. <a target="_blank" href='{FollowedURL}' title='{FollowedName}'><img src='{FollowedPortraitURL-40}'></a>
  523. </div>
  524. {block:Followed}{/block:Following}
  525. </div>
  526. </div>
  527. </div>
  528.  
  529. <div class="links">
  530. <a href="/" style="float:left">back</a>
  531. <a href="http://tumblr.com/dashboard">dash</a>
  532. <!---here are your two custom links, feel free to add more if ya feel like it--->
  533. <a href="/">one</a>
  534. <a href="/">two</a>
  535. <!---do not remove or I swear i will fucking shank you--->
  536. <a href="http://gloriousponds.co.vu" title="amywiiliams">©</a>
  537. </div>
  538.  
  539.  
  540.  
  541.  
  542. </div>
  543.  
  544.  
  545.  
  546.  
  547. </body>
  548. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement