Advertisement
cocoofrps

PAGE 3 N

Feb 14th, 2015
769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.54 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  4. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  5. <script>
  6. (function($){
  7. $(document).ready(function(){
  8. $("[title]").style_my_tooltips({
  9. tip_follows_cursor:true,
  10. tip_delay_time:200,
  11. tip_fade_speed:300
  12. }
  13. );
  14. });
  15. })(jQuery);
  16. </script>
  17.  
  18.  
  19. <head>
  20.  
  21. <title>{Title}</title>
  22. <link rel="shortcut icon" href="{Favicon}">
  23. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  24. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  25.  
  26. <!--- THEME BY @cocoofrps --->
  27.  
  28. <style type="text/css">
  29.  
  30. ::-webkit-scrollbar-thumb {
  31. height:auto;
  32. background-color:#000;
  33. }
  34.  
  35. ::-webkit-scrollbar {
  36. height:9px;
  37. width:5px;
  38. background-color:#f0f0f0;
  39. }
  40.  
  41.  
  42. body {
  43. background:#fff;
  44. margin:0px;
  45. color:#303030;
  46. font-family:'arial';
  47. font-size:11px;
  48. line-height:20px;
  49. text-align:justify;
  50. background-image:url('LINKHERE');
  51. background-attachment:fixed;
  52. }
  53.  
  54. small,big {
  55. font-size:9px;
  56. }
  57.  
  58. a {
  59. outline:none;
  60. -moz-outline-style:none;
  61. -webkit-transition: all 0.4s ease-in-out;
  62. -moz-transition: all 0.4s ease-in-out;
  63. -o-transition: all 0.4s ease-in-out;
  64. -ms-transition: all 0.4s ease-in-out;
  65. transition: all 0.4s ease-in-out;
  66. color:#303030;
  67. }
  68.  
  69. blockquote {
  70. text-align:right;
  71. }
  72.  
  73. center {
  74. -webkit-transition: all 0.4s ease-in-out;
  75. -moz-transition: all 0.4s ease-in-out;
  76. -o-transition: all 0.4s ease-in-out;
  77. -ms-transition: all 0.4s ease-in-out;
  78. transition: all 0.4s ease-in-out;
  79. }
  80.  
  81. b {
  82. color:#000;
  83. font-weight:100;
  84. }
  85.  
  86. a:hover {
  87. color:#f0f0f0;
  88. -webkit-transition: all 0.4s ease-in-out;
  89. -moz-transition: all 0.4s ease-in-out;
  90. -o-transition: all 0.4s ease-in-out;
  91. -ms-transition: all 0.4s ease-in-out;
  92. transition: all 0.4s ease-in-out;
  93. }
  94.  
  95. /* BANNER */
  96.  
  97. #banner {
  98. border-top:40px solid #000;
  99. }
  100.  
  101. #banner h1 {
  102. font-size:30px;
  103. font-family:'courier new';
  104. color:#000;
  105. text-transform:uppercase;
  106. margin-top:5px;
  107. }
  108.  
  109. /* TOP LINKS */
  110.  
  111. .links {
  112. position:fixed;
  113. margin-top:-78px;
  114. border-left:7px solid #000;
  115. }
  116.  
  117. .links a {
  118. text-decoration:none;
  119. display:inline-block;
  120. padding:3px 10px;
  121. margin-right:5px;
  122. font-size:9px;
  123. text-transform:lowercase;
  124. background-color:#f0f0f0;
  125. }
  126.  
  127. .links a:hover {
  128. background-color:#000;
  129. }
  130.  
  131. /* LIST CONTENT */
  132.  
  133. #content {
  134. margin:30px auto;
  135. width:400px;
  136. text-align:left;
  137. padding:50px;
  138. background-color:#f0f0f0;
  139. }
  140.  
  141. .tabs {
  142. display:inline-block;
  143. width:100%;
  144. }
  145.  
  146. .tab-links {
  147. text-align:center;
  148. background-color:#000;
  149. }
  150.  
  151. .tab-links ul {
  152. margin-left:-50px;
  153. padding-left:0px;
  154. }
  155.  
  156. .tab-links li {
  157. list-style:none;
  158. display:inline-block;
  159. }
  160.  
  161. .tab-links a {
  162. padding:3px 10px;
  163. display:inline-block;
  164. background:#000;
  165. font-size:11px;
  166. font-weight:600;
  167. color:#aaa;
  168. text-decoration:none;
  169. text-transform:uppercase;
  170. transition:all linear 0.15s;
  171. }
  172.  
  173. .tab-links a:hover {
  174. background:#f0f0f0;
  175. text-decoration:none;
  176. }
  177.  
  178. li.active a, li.active a:hover {
  179. background:#fff;
  180. color:#4c4c4c;
  181. }
  182.  
  183. .tab-content {
  184. padding:15px;
  185. background:#fff;
  186. }
  187.  
  188. .tab {
  189. display:none;
  190. }
  191.  
  192. .tab.active {
  193. display:block;
  194. }
  195.  
  196. /* LINKS TAB */
  197.  
  198. #tab1 img{
  199. width:400px;
  200. margin-top:20px;
  201. margin-left:-15px;
  202. }
  203.  
  204. .tlinks h1, .plot h1, .inquire h1 {
  205. font-size:11px;
  206. text-align:center;
  207. border-bottom:1px solid #f0f0f0;
  208. padding:3px 10px;
  209. }
  210.  
  211. .tlinks a {
  212. font-size:9px;
  213. text-transform:lowercase;
  214. background-color:#fff;
  215. font-weight:400;
  216. color:#303030;
  217. }
  218.  
  219. /* ADMINS TAB */
  220.  
  221. .admin, .admins {
  222. -webkit-transition: all 0.4s ease-in-out;
  223. -moz-transition: all 0.4s ease-in-out;
  224. -o-transition: all 0.4s ease-in-out;
  225. -ms-transition: all 0.4s ease-in-out;
  226. transition: all 0.4s ease-in-out;
  227. }
  228.  
  229. .admin {
  230. margin-bottom:10px;
  231. }
  232.  
  233. .admin img {
  234. width:100px;
  235. padding:5px;
  236. background-color:#000;
  237. }
  238.  
  239. .admin .desc {
  240. padding:10px;
  241. height:90px;
  242. width:240px;
  243. overflow-y:auto;
  244. background-color:#f0f0f0;
  245. }
  246.  
  247. .admin center {
  248. margin-top:30px;
  249. -webkit-transition: all 0.4s ease-in-out;
  250. -moz-transition: all 0.4s ease-in-out;
  251. -o-transition: all 0.4s ease-in-out;
  252. -ms-transition: all 0.4s ease-in-out;
  253. transition: all 0.4s ease-in-out;
  254. }
  255.  
  256. .admin .more {
  257. visibility:none;
  258. text-align:right;
  259. margin-top:100px;
  260. -webkit-transition: all 0.4s ease-in-out;
  261. -moz-transition: all 0.4s ease-in-out;
  262. -o-transition: all 0.4s ease-in-out;
  263. -ms-transition: all 0.4s ease-in-out;
  264. transition: all 0.4s ease-in-out;
  265. }
  266.  
  267. .admin:hover .more {
  268. visibility:inline;
  269. margin-top:0px;
  270. }
  271.  
  272. .admin:hover center {
  273. margin-top:0px;
  274. }
  275.  
  276. /* CREDIT */
  277.  
  278. #c a {
  279. position:fixed;
  280. bottom:10px;
  281. right:10px;
  282. padding:5px 10px;
  283. background-color:#000;
  284. font-size:10px;
  285. text-transform:uppercase;
  286. text-decoration:none;
  287. display:block;
  288. }
  289.  
  290. /* TOOLTIP */
  291.  
  292.  
  293. #s-m-t-tooltip {
  294. position:absolute;
  295. background-color:#000;
  296. padding:3px 5px 3px;
  297. z-index:99999999999999999999999999999999;
  298. margin-top:-30px;
  299. margin-left:-30px;
  300. font-family:'Courier New';
  301. display:block;
  302. text-transform:uppercase;
  303. font-size:8px;
  304. color:{color:text};
  305. }
  306.  
  307. {CustomCSS}</style>
  308. </head>
  309. <body>
  310. <!-- THIS IS WHERE THE TOP INFORMATION IS! You can customize the links and the title. The title is in the h1. The links are in the a. If you have any questions, just shoot me a message @cocoofrps. :) -->
  311. <div id="banner">
  312. <h1>&&. navigation</h1>
  313. <div class="links">
  314. <a href="/">back</a>
  315. </div>
  316. </div>
  317.  
  318. <!--- LIST CONTENT -->
  319. <div id="content">
  320. <div class="tabs">
  321. <div class="tab-links">
  322. <li class="active"><a href="#tab1">links</a></li>
  323. <li><a href="#tab2">plot</a></li>
  324. <li><a href="#tab3">admins</a></li>
  325. <li><a href="#tab4">ask</a></li>
  326. </ul>
  327. <div class="tab-content">
  328. <div id="tab1" class="tab active">
  329. <!-- LINKS -->
  330. <div class="tlinks">
  331. <h1>( header one )</h1>
  332. <a href="/">full plot</a>
  333. <a href="/">rules</a>
  334. <a href="/">characters</a>
  335. <a href="/">app count</a>
  336. <a href="/">application</a>
  337. <a href="/">inspo blog</a>
  338. <h1>( header two )</h1>
  339. <a href="/">accepted</a>
  340. <a href="/">checklist</a>
  341. <a href="/">blogroll</a>
  342. <a href="/">gossip blog</a>
  343. <a href="/">ooc list</a>
  344. <a href="/">hiatus list</a>
  345. </div>
  346. <img src="http://41.media.tumblr.com/15d0a04ab1e98f3b321239f1648e25aa/tumblr_nhlfsbyZKi1rg7caoo1_500.jpg">
  347. </div>
  348. <div id="tab2" class="tab">
  349. <!-- PLOT -->
  350. <div class="plot">
  351. <h1>some sorta quote;</h1>
  352. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</blockquote>
  353. <h1>some sorta quote;</h1>
  354. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</blockquote>
  355. <h1>some sorta quote;</h1>
  356. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</blockquote>
  357. </div>
  358. </div>
  359. <div id="tab3" class="tab">
  360. <!-- ADMINS -->
  361. <div class="admins">
  362.  
  363. <div class="admin">
  364. <!-- DEPENDING ON WHAT SIDE YOU WANT THE IMAGE TO BE PLACED IN, ADD ALIGN="RIGHT" or ALIGN="LEFT" AFTER THE LINK AS YOU CAN SEE BELOW. -->
  365. <img src="https://31.media.tumblr.com/e008c2f408f3ebef2be685b6772210ae/tumblr_inline_njrkyuLDmz1s703sn.jpg" align="right">
  366. <div class="desc">
  367. <center>
  368. <b>name;</b>
  369. <i>timezone - mascot</i>
  370. </center>
  371. <div class="more">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div>
  372. </div>
  373. </div>
  374.  
  375. <div class="admin">
  376. <img src="https://31.media.tumblr.com/e008c2f408f3ebef2be685b6772210ae/tumblr_inline_njrkyuLDmz1s703sn.jpg" align="left">
  377. <div class="desc">
  378. <center>
  379. <b>name;</b>
  380. <i>timezone - mascot</i>
  381. </center>
  382. <div class="more">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div>
  383. </div>
  384.  
  385. </div>
  386.  
  387. </div>
  388. </div>
  389.  
  390. <div id="tab4" class="tab">
  391. <div class="inquire">
  392. <h1>1. ( QUESTION ASKED ) ?</h1>
  393. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</blockquote>
  394. <h1>2. ( QUESTION ASKED ) ?</h1>
  395. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</blockquote>
  396. <h1>3. ( QUESTION ASKED ) ?</h1>
  397. <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</blockquote>
  398.  
  399. <p><iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/URL.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. </div>
  405. <!--- CREDIT. Honey, don't bother with this. It's gonna stay here forever; don't even touch it. Don't even look at it! -->
  406. <div id="c"><a href="http://cocoofrps.tumblr.com/">th</a></div>
  407. </body>
  408. <script>
  409. jQuery(document).ready(function() {
  410. jQuery('.tabs .tab-links a').on('click', function(e) {
  411. var currentAttrValue = jQuery(this).attr('href');
  412.  
  413. // Show/Hide Tabs
  414. jQuery('.tabs ' + currentAttrValue).show().siblings().hide();
  415.  
  416. // Change/remove current tab to active
  417. jQuery(this).parent('li').addClass('active').siblings().removeClass('active');
  418.  
  419. e.preventDefault();
  420. });
  421. });
  422. </script>
  423. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement