Advertisement
Daichi-Sama

Becca's Zane Theme

Jun 1st, 2021
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.76 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9. </head>
  10.  
  11. <!--tooltip script (it's to edit the way the title of your links look when you hover over them -->
  12. <style>figure{margin:0}.tmblr-iframe{position:absolute}.tmblr-iframe.hide{display:none}</style><link href="https://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  13. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  14. <script src="https://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  15. <script>
  16. (function($){
  17. $(document).ready(function(){
  18. $("[title]").style_my_tooltips({
  19. tip_follows_cursor:true,
  20. tip_delay_time:200,
  21. tip_fade_speed:500
  22. });
  23. });
  24. })(jQuery);
  25. </script>
  26.  
  27. <!--pop up tabs script-->
  28. <script>
  29. $(document).ready(function(){
  30. $("ul#tabs li").click(function(e){
  31. if (!$(this).hasClass("active")) {
  32. var tabNum = $(this).index();
  33. var nthChild = tabNum+1;
  34. $("ul#tabs li.active").removeClass("active");
  35. $(this).addClass("active");
  36. $("ul#tab li.active").removeClass("active");
  37. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  38. }
  39. });
  40. });
  41. </script>
  42. <!--script end-->
  43.  
  44. <!--tooltip script end-->
  45. <!--pop up script-->
  46. <script type="text/javascript"
  47. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  48. <script>
  49. $(document).ready(function() {
  50. //
  51. $('a.poplight[href^=#]').click(function() {
  52. var popID = $(this).attr('rel'); //Get Popup Name
  53. var popURL = $(this).attr('href'); //Get Popup href to define size
  54. var query= popURL.split('?');
  55. var dim= query[1].split('&');
  56. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  57. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="https://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  58. var popMargTop = ($('#' + popID).height() + 80) / 2;
  59. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  60. //Apply Margin to Popup
  61. $('#' + popID).css({
  62. 'margin-top' : -popMargTop,
  63. 'margin-left' : -popMargLeft
  64. });
  65. $('body').append('<div id="fade"></div>');
  66. $('#fade').css({'filter' : 'alpha(opacity=100)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  67. return false;
  68. });
  69. $('a.close, #fade').live('click', function() {
  70. $('#fade , .popup_block').fadeOut(function() {
  71. $('#fade, a.close').remove(); //fade them both out
  72. });
  73. return false;
  74. });
  75. });
  76. </script>
  77. <!--ask pop script end-->
  78.  
  79. <style type="text/css">
  80.  
  81. /*cursor code, change image to change cursor*/
  82. /*find more at https://pixel-soup.tumblr.com/tagged/cursors */
  83.  
  84. *, body, a { cursor:url("https://i.imgur.com/2qleX.jpg"), auto }
  85. a:hover { cursor:url("https://68.media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif"), auto } /*this defines the pointer cursor*/
  86.  
  87. /*these are the custom fonts, you can install more just by pasting the code here*/
  88.  
  89.  
  90. @font-face{font-family:"nightingale";src:url('https://static.tumblr.com/zx3ibzm/mLdovzrvz/nightingale_sample.ttf');}
  91. @font-face{font-family:"bebas neue";src:url('https://static.tumblr.com/zx3ibzm/JgJovyuzq/bebasneue.otf');}
  92. @font-face{font-family:"sail";src:url('https://static.tumblr.com/it5srtk/bSzowedx5/sail-regular.otf');}
  93. @font-face{font-family:"cavier dreams";src:url('https://dl.dropboxusercontent.com/s/uubyziybvh00j4f/CaviarDreams.ttf');}
  94.  
  95. /*selection color*/
  96.  
  97. ::-moz-selection { /* Code for Firefox */
  98. color: #fff; /*text color of selected text*/
  99. background: #576d8c; /*color of selection bg*/
  100. }
  101.  
  102. ::selection {
  103. color: #fff; /*text color of selected text*/
  104. background: #576d8c; /*color of selection bg*/
  105. }
  106.  
  107. /*selection color end*/
  108.  
  109. ::-webkit-scrollbar-thumb {
  110. background-color:#fff; /*scrollbar's slider color*/
  111. background-image:url('URL HERE'); /*optional background image*/
  112. height:0px;
  113. -moz-border-radius: 50px; /*these make bar rounded*/
  114. border-radius: 50px;
  115. }
  116.  
  117. ::-webkit-scrollbar {
  118. height:0px;
  119. width:1px; /*width of slider*/
  120. background-color:transparent; /*scrollbar's main color*/
  121. background-image:url('URL HERE'); /*optional background image*/
  122. }
  123.  
  124. /*the code here is to reduce the opacity of an image and make it more visible on hover, you can remove it if you want your image to always be at 100%*/
  125.  
  126. img, iframe {
  127.  
  128. opacity:1; /*change this to change visibility, set it to 1 if you want it completely visible*/
  129.  
  130. -moz-transition-duration: 0.5s;
  131.  
  132. -o-transition-duration: 0.5s;
  133.  
  134. -webkit-transition-duration: 0.5s;
  135.  
  136. transition-duration: 0.5s;
  137.  
  138. padding:5px;
  139. }
  140.  
  141.  
  142.  
  143. img:hover,iframe:hover {
  144.  
  145. opacity:1;
  146.  
  147. -webkit-filter:none;
  148.  
  149. -moz-transition-duration: 0.5s;
  150.  
  151. -o-transition-duration: 0.5s;
  152.  
  153. -webkit-transition-duration: 0.5s;
  154.  
  155. transition-duration: 0.5s;}
  156.  
  157. /*HOVER IMAGE CODE END*/
  158.  
  159.  
  160. body {
  161. background-color:#404040; /*set this the same color as your background image to avoid black areas on different resolutions*/
  162. background-image:url('https://static.tumblr.com/d19icbx/9q7qu0ndd/zane.png'); /*bg image goes here*/
  163. background-attachment: fixed;
  164. background-repeat: no-repeat;
  165. background-position: left top;
  166. color:#a9a8a8; /*body font color*/
  167. text-shadow: 0px 0px 3px transparent;
  168. font-family: calibri;
  169. text-align:justify;
  170. font-size: 10px;
  171. letter-spacing:2px;
  172. }
  173.  
  174. .pagi {
  175. font-size:25px;
  176. font-family:calibiri;
  177. margin-top:480px; /*change to decide position of pagination*/
  178. margin-left:720px;
  179. color: #fff; /*color of pagination but keep in mind it's also influence by the 'a' codes as it is a link*/
  180. position:fixed;
  181. -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s;
  182. transition-duration: 0.8s; -o-transition-duration: 0.8s;}
  183.  
  184. /*the tooltip is the text that appears when you hover on a link / tag / etc.
  185. this script stylizes it*/
  186.  
  187. #s-m-t-tooltip{
  188. max-width:400px;
  189. margin:15px;
  190. padding:2px 8px;
  191. background-image: url(""); /*include image if you want a background for the tooltip text*/
  192. background: transparent;
  193. background-repeat:repeat;
  194. background-attachment:fixed;
  195. color:#a9a8a8;
  196. /*the text shadow determines the outline of the text because there's no easy way to add an outline to it, you can change all the code to another color*/
  197. text-shadow:1px 1px #090a0b,
  198. 1px -1px #090a0b,
  199. 1px 0px #090a0b,
  200. 0px 1px #090a0b,
  201. 0px -1px #090a0b,
  202. -1px 1px #090a0b,
  203. -1px 0px #090a0b,
  204. -1px -1px #090a0b;
  205. z-index:99999999999999999999;
  206. font-size:10px;
  207. letter-spacing:2px;
  208. font-style:bold;
  209. letter-spacing:2px;
  210. font-family: 'nightingale';
  211. text-transform:lowercase;
  212. box-shadow:0px 0px 0px;}
  213.  
  214. #s-m-tooltip:hover {
  215. -webkit-transition: all 0.6s ease-out;
  216. -moz-transition: all 0.6s ease-out;
  217. transition: all 0.6s ease-out;
  218. -o-transition:all 0.6s ease;
  219. -ms-transition: all 0.6s ease-in-out;}
  220.  
  221.  
  222. small,sub,sup {
  223. font-size:10px;
  224. text-shadow: 0px 0px 3px #000;
  225. }
  226.  
  227. b, bold, strong {
  228. font-size:14px;
  229. text-transform:uppercase;
  230. letter-spacing:1px;
  231. font-weight:normal;
  232. font-family: 'bebas neue';
  233. color: #a9a8a8;
  234. text-shadow:2px 2px 0px #000;
  235. }
  236.  
  237. i, italic, em {
  238. font-size:8px;
  239. color: #a9a8a8;
  240. font-family: 'nightingale';
  241. font-weight:normal;
  242. letter-spacing:1px;
  243. text-transform:lowercase;
  244. }
  245.  
  246. h3, h4 {
  247. background-image: url('https://static.tumblr.com/d19icbx/CVJqu0qpm/zane2.png');
  248. background-repeat:repeat;
  249. background-attachment:fixed;
  250. border: inset 1px #0e0e0e; /*color of border of the titles of the sidebar*/
  251. padding:2px;
  252. color:#eae9e9; /*text color of sidebar titles*/
  253. text-shadow:1px 1px #090a0b,
  254. 1px -1px #090a0b,
  255. 1px 0px #090a0b,
  256. 0px 1px #090a0b,
  257. 0px -1px #090a0b,
  258. -1px 1px #090a0b,
  259. -1px 0px #090a0b,
  260. -1px -1px #090a0b;
  261. /*change all the hex of the text shadow to the same code
  262. to change the outline of the text*/
  263. font-size:9px;
  264. font-family:calibri;
  265. text-transform:uppercase;
  266. letter-spacing:1px;
  267. text-align:center;}
  268.  
  269.  
  270. a,a:visited,a:active {
  271. color: #94872b; /*color of links*/
  272. text-shadow: 1px 1px #000,
  273. 1px -1px #000,
  274. 1px 0px #000,
  275. 0px 1px #000,
  276. 0px -1px #000,
  277. -1px 1px #000,
  278. -1px 0px #000,
  279. -1px -1px #000;
  280. text-decoration:none;
  281. text-transform:uppercase;
  282.  
  283. -moz-transition-duration: 0.6s;
  284. -o-transition-duration: 0.6s;
  285. -webkit-transition-duration: 0.6s;
  286. transition-duration: 0.6s;}
  287.  
  288. a:hover {
  289. color: #a9a8a8; /*color of links on hover*/
  290. -webkit-transition: all 0.6s ease-out;
  291. -moz-transition: all 0.6s ease-out;
  292. transition: all 0.6s ease-out;
  293. -o-transition:all 0.6s ease;
  294. -ms-transition: all 0.6s ease-in-out;
  295. text-shadow:transparent;
  296. }
  297.  
  298. /*POST TITLE SETTINGS*/
  299.  
  300. .titulo {
  301.  
  302. font-family: 'sail';
  303. font-size: 23px; /*size of title*/
  304. text-align: center;
  305. text-transform: none;
  306. color: #a9a8a8; /*color of title*/
  307. text-shadow: 0px 3px 0 #000,
  308. -1px 2px 0 #000,
  309. 1px 2px 0 #000;
  310.  
  311. }
  312.  
  313. #container {
  314. position:absolute;
  315. left:132px; /*change to position posts to your bg image*/
  316. top:83px;
  317. height:496px; /*determines height of container*/
  318. overflow-y:scroll;
  319. opacity:1;/*set this as '1' if you'd like the posts to always appear*/
  320. -webkit-transition: all 0.6s ease-out;
  321. -moz-transition: all 0.6s ease-out;
  322. transition: all 0.6s ease-out;
  323. -o-transition:all 0.6s ease;
  324. -ms-transition: all 0.6s ease-in-out;
  325. }
  326.  
  327. #entries {
  328. background-color:transparent; /*set this as background color to hide the image in the background, in the preview case the word reading 'hover' */
  329.  
  330.  
  331. }
  332.  
  333.  
  334. #entries img {
  335. max-width: 100%;
  336. height: auto;
  337.  
  338. }
  339.  
  340. #content {
  341. width:502px; /*determines size of posts*/
  342. margin-bottom:20px;
  343. padding:20px;
  344. opacity:1;
  345. }
  346.  
  347.  
  348. blockquote {
  349. border-left:4px solid #0e0e0e; /*color of blockquote*/
  350. border-top-left-radius:25px;
  351. border-bottom-left-radius:25px;
  352. padding: 2px 7px;
  353. margin: 3px 0 3px 8px;
  354. }
  355.  
  356. blockquote img {
  357. max-width:100%;
  358. height:auto;
  359. }
  360.  
  361. /*ASK*/
  362.  
  363. #asker {
  364. font-size:15px;
  365. margin-bottom:-20px;
  366. color: #a9a8a8; /*color of asker url / anonymous but if a user then it is also determined by 'a' as it will be a link*/
  367. font-family: 'nightingale';
  368. text-align:center;
  369. text-decoration:none;
  370. -webkit-transition: all 0.6s ease-out;
  371. -moz-transition: all 0.6s ease-out;
  372. transition: all 0.6s ease-out;
  373. -o-transition:all 0.6s ease;
  374. -ms-transition: all 0.6s ease-in-out;
  375.  
  376. }
  377.  
  378. #asker a:hover {
  379. -webkit-filter: blur(2px);
  380. -moz-filter: blur(2px);
  381. -o-filter: blur(2px);
  382. -ms-filter: blur(2px);
  383. filter: blur(2px);
  384. transition: all 0.6s ease-out;
  385. }
  386.  
  387. #ask {
  388. background: transparent;
  389. background: url("https://static.tumblr.com/d19icbx/CVJqu0qpm/zane2.png");/*image behind the question*/
  390. background-repeat:repeat;
  391. border-top:inset 2px #0e0e0e; /*top border color of question*/
  392. border-bottom:inset 2px #0e0e0e; /*bottom border color of question*/
  393. padding: 10px 20px 10px 20px;
  394. text-align:center;
  395. border-radius:30px;
  396. text-shadow: 1px 1px #090a0b,
  397. 1px -1px #090a0b,
  398. 1px 0px #090a0b,
  399. 0px 1px #090a0b,
  400. 0px -1px #090a0b,
  401. -1px 1px #090a0b,
  402. -1px 0px #090a0b,
  403. -1px -1px #090a0b;
  404. /*change all the hex of the text shadow to the same code
  405. to change the outline of the text*/
  406. }
  407.  
  408.  
  409. #answer {
  410. padding-top:20px;
  411. }
  412.  
  413. #ask_form {
  414. height:290px!important;
  415. }
  416. /*ASK ENDS HERE*/
  417.  
  418. /*CHAT POST BEGINS HERE*/
  419.  
  420. .convo {
  421. font-size: 11px;
  422. text-align:left;
  423. padding:0px;
  424.  
  425. }
  426.  
  427. .convo li {
  428. list-style:none;
  429. }
  430.  
  431. .convo .label {
  432. text-transform: uppercase;
  433. font-weight:bold;
  434.  
  435. }
  436.  
  437. .line_odd .label {
  438. color: #576d8c; /* Color of odd person in the chat */
  439. background: none;
  440. }
  441.  
  442. .line_even .label {
  443. color: #000; /* Color of even person in the chat */
  444. }
  445.  
  446. .line_even {
  447. background: #222930; /*background color of even chat*/
  448. margin:12px;
  449. padding: 5px;
  450. color: #f9f9f9; /*color of even text*/
  451. }
  452.  
  453. .line_odd {
  454. background: #090a0b; /*background color of odd chat*/
  455. margin:12px;
  456. padding: 5px;
  457. color: #f9f9f9; /*color of odd text*/
  458. }
  459.  
  460.  
  461.  
  462.  
  463. /*CHAT POST ENDS HERE*/
  464.  
  465. /*QUOTE BEGINS HERE*/
  466.  
  467. /*I have the first letter stylized to be the same as the quote, but you can remove that part by simply deleting the p::first-letter*/
  468.  
  469. .quote,p::first-letter {
  470. font-family: 'sail';
  471. font-size: 23px;
  472. text-align: center;
  473. color: #94872b; /*color of quote*/
  474. text-shadow: 0px 3px 0 #000,
  475. -1px 2px 0 #000,
  476. 1px 2px 0 #000;
  477. text-transform:uppercase;
  478. }
  479.  
  480.  
  481.  
  482. /*QUOTE ENDS HERE*/
  483.  
  484.  
  485. /*LINK POST BEGIN*/
  486.  
  487. #linku {
  488. text-transform:uppercase;
  489. text-align:center;
  490. letter-spacing:0px;
  491. font-weight:normal;
  492. font-family: 'bebas neue';
  493. font-size:14px;
  494. }
  495.  
  496. /*LINK POST END*/
  497.  
  498. /*SIDE BAR / DESCRIPTION BEGINS HERE*/
  499.  
  500. #boxy {
  501. position:fixed;
  502. top:85px; /*position of the box*/
  503. overflow:scroll;
  504. height:300px; /*determines height of the box - increase it if you have too much text and want to avoid scrollbar*/
  505. margin-left:675px;
  506. opacity:1;
  507. }
  508.  
  509. #despacito {
  510. margin-top:10px;
  511. width:160px; /*determines width of description*/
  512. text-align:center;
  513.  
  514. }
  515.  
  516. /*SIDE BAR / DESCRIPTION END*/
  517.  
  518. /*TAGS AND INFO BEGINS HERE*/
  519. .permalinks {
  520. text-align:center;
  521. margin-top:15px;
  522. padding-top: 5px;
  523. padding-bottom: 5px;
  524. font-size:9px;
  525. color:#a9a8a8;
  526. text-transform:uppercase;
  527. border-top: solid 1px #0e0e0e; /*color of the line above permalinks*/
  528. border-bottom: solid 1px #0e0e0e; /*color of the line below permalinks*/
  529. border-radius:25px; /*increase to make border round*/
  530. -moz-transition-duration:.6s;
  531. -webkit-transition-duration:.6s;
  532. -o-transition-duration:.6s;
  533. -webkit-filter: blur(0px);
  534. background-image: url(''); /*you can insert image here for the permalinks bg*/
  535.  
  536. }
  537.  
  538. .permalinks a {
  539. font-family:calibri;
  540. font-size:9px;
  541. font-weight:bold;
  542. color:#94872b;
  543. text-shadow: 1px 1px #000,
  544. 1px -1px #000,
  545. 1px 0px #000,
  546. 0px 1px #000,
  547. 0px -1px #000,
  548. -1px 1px #000,
  549. -1px 0px #000,
  550. -1px -1px #000;
  551. text-transform:uppercase;
  552. text-decoration:none;
  553. }
  554.  
  555.  
  556. .permalinks a:hover {
  557. color:#a9a8a8;
  558. -webkit-transition: all 0.5s ease-in-out;
  559. -moz-transition: all 0.5s ease-in-out;
  560. -o-transition: all 0.5s ease-in-out;
  561. -ms-transition: all 0.5s ease-in-out;
  562. transition: all 0.5s ease-in-out;
  563. }
  564.  
  565. .tags {
  566.  
  567. padding-top:10px;
  568. text-align:center;
  569. padding-left:5px;
  570. padding-right:15px;
  571. color: #a9a8a8; /*this determines the color of the small symbol (by default a hashtag but you can change it) next to the tags*/
  572. font-size:9px;
  573. text-shadow:0px 0px 3px transparent
  574. }
  575.  
  576. .tags a {
  577. color:#94872b;
  578. text-shadow: 1px 1px #000,
  579. 1px -1px #000,
  580. 1px 0px #000,
  581. 0px 1px #000,
  582. 0px -1px #000,
  583. -1px 1px #000,
  584. -1px 0px #000,
  585. -1px -1px #000;
  586. font-size:8px;
  587. font-weight:bold;
  588. font-family:calibri;
  589. text-transform:uppercase;
  590. text-shadow:0px 0px 3px #576d8c
  591. letter-spacing:0px;
  592.  
  593. }
  594.  
  595.  
  596. .tags a:hover {
  597. color: #a9a8a8; /*tag color on hover*/
  598. -webkit-transition: all 0.5s ease-in-out;
  599. -moz-transition: all 0.5s ease-in-out;
  600. -o-transition: all 0.5s ease-in-out;
  601. -ms-transition: all 0.5s ease-in-out;
  602. transition: all 0.5s ease-in-out;
  603.  
  604. }
  605.  
  606.  
  607. /*POP UP CODES AND LINKS BEGIN*/
  608.  
  609.  
  610. #pops {
  611. position:fixed;
  612.  
  613. }
  614.  
  615.  
  616. #linku1 {
  617. position:fixed;
  618. font-size:18px;
  619. text-decoration:none;
  620. transform: rotate(0deg);
  621. -ms-transform: rotate(0deg);
  622. -webkit-transform: rotate(0deg);
  623. -o-transform: rotate(0deg);
  624. -moz-transform: rotate(0deg);
  625. margin-left:700px;
  626. margin-top:380px;
  627. }
  628.  
  629. #linku1:hover {
  630. -webkit-filter: blur(0px);
  631. -moz-filter: blur(0px);
  632. -o-filter: blur(0px);
  633. -ms-filter: blur(0px);
  634. filter: blur(0px);
  635. -webkit-transition: all 0.5s ease-in-out;
  636. -moz-transition: all 0.5s ease-in-out;
  637. -o-transition: all 0.5s ease-in-out;
  638. -ms-transition: all 0.5s ease-in-out;
  639. transition: all 0.5s ease-in-out;
  640. }
  641.  
  642. #linku2 {
  643. position:fixed;
  644. font-size:18px;
  645. text-decoration:none;
  646. transform: rotate(0deg);
  647. -ms-transform: rotate(0deg);
  648. -webkit-transform: rotate(0deg);
  649. -o-transform: rotate(0deg);
  650. -moz-transform: rotate(0deg);
  651. margin-left:740px;
  652. margin-top:380px;
  653. }
  654.  
  655. #linku2:hover {
  656. -webkit-filter: blur(0px);
  657. -moz-filter: blur(0px);
  658. -o-filter: blur(0px);
  659. -ms-filter: blur(0px);
  660. filter: blur(0px);
  661. -webkit-transition: all 0.5s ease-in-out;
  662. -moz-transition: all 0.5s ease-in-out;
  663. -o-transition: all 0.5s ease-in-out;
  664. -ms-transition: all 0.5s ease-in-out;
  665. transition: all 0.5s ease-in-out;
  666. }
  667.  
  668. #linku3 {
  669. position:fixed;
  670. font-size:18px;
  671. text-decoration:none;
  672. transform: rotate(0deg);
  673. -ms-transform: rotate(0deg);
  674. -webkit-transform: rotate(0deg);
  675. -o-transform: rotate(0deg);
  676. -moz-transform: rotate(0deg);
  677. margin-left:780px;
  678. margin-top:380px;
  679. }
  680.  
  681. #linku3:hover {
  682. -webkit-filter: blur(0px);
  683. -moz-filter: blur(0px);
  684. -o-filter: blur(0px);
  685. -ms-filter: blur(0px);
  686. filter: blur(0px);
  687. -webkit-transition: all 0.5s ease-in-out;
  688. -moz-transition: all 0.5s ease-in-out;
  689. -o-transition: all 0.5s ease-in-out;
  690. -ms-transition: all 0.5s ease-in-out;
  691. transition: all 0.5s ease-in-out;
  692. }
  693.  
  694. #linku4 {
  695. position:fixed;
  696. font-size:18px;
  697. text-decoration:none;
  698. transform: rotate(0deg);
  699. -ms-transform: rotate(0deg);
  700. -webkit-transform: rotate(0deg);
  701. -o-transform: rotate(0deg);
  702. -moz-transform: rotate(0deg);
  703. margin-left:700px;
  704. margin-top:420px;
  705. }
  706.  
  707. #linku4:hover {
  708. -webkit-filter: blur(0px);
  709. -moz-filter: blur(0px);
  710. -o-filter: blur(0px);
  711. -ms-filter: blur(0px);
  712. filter: blur(0px);
  713. -webkit-transition: all 0.5s ease-in-out;
  714. -moz-transition: all 0.5s ease-in-out;
  715. -o-transition: all 0.5s ease-in-out;
  716. -ms-transition: all 0.5s ease-in-out;
  717. transition: all 0.5s ease-in-out;
  718. }
  719.  
  720. #linku5 {
  721. position:fixed;
  722. font-size:18px;
  723. text-decoration:none;
  724. transform: rotate(0deg);
  725. -ms-transform: rotate(0deg);
  726. -webkit-transform: rotate(0deg);
  727. -o-transform: rotate(0deg);
  728. -moz-transform: rotate(0deg);
  729. margin-left:740px;
  730. margin-top:420px;
  731. }
  732.  
  733. #linku5:hover {
  734. -webkit-filter: blur(0px);
  735. -moz-filter: blur(0px);
  736. -o-filter: blur(0px);
  737. -ms-filter: blur(0px);
  738. filter: blur(0px);
  739. -webkit-transition: all 0.5s ease-in-out;
  740. -moz-transition: all 0.5s ease-in-out;
  741. -o-transition: all 0.5s ease-in-out;
  742. -ms-transition: all 0.5s ease-in-out;
  743. transition: all 0.5s ease-in-out;
  744. }
  745.  
  746. #linku6 {
  747. position:fixed;
  748. font-size:18px;
  749. text-decoration:none;
  750. transform: rotate(0deg);
  751. -ms-transform: rotate(0deg);
  752. -webkit-transform: rotate(0deg);
  753. -o-transform: rotate(0deg);
  754. -moz-transform: rotate(0deg);
  755. margin-left:780px;
  756. margin-top:420px;
  757.  
  758. }
  759.  
  760. #linku6:hover {
  761. -webkit-filter: blur(0px);
  762. -moz-filter: blur(0px);
  763. -o-filter: blur(0px);
  764. -ms-filter: blur(0px);
  765. filter: blur(0px);
  766. -webkit-transition: all 0.5s ease-in-out;
  767. -moz-transition: all 0.5s ease-in-out;
  768. -o-transition: all 0.5s ease-in-out;
  769. -ms-transition: all 0.5s ease-in-out;
  770. transition: all 0.5s ease-in-out;
  771. }
  772.  
  773.  
  774.  
  775. /*POP UP END*/
  776.  
  777.  
  778. /* DO NOT REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */
  779. .credit {
  780. font-weight:bold;
  781. border-top:dashed 1px #0e0e0e;
  782. border-right:dashed 1px #0e0e0e;
  783. border-left:dashed 1px #0e0e0e;
  784. background:#242424;
  785. color:#fff;
  786. padding:10px;
  787. font-size:15px;
  788. bottom:0px;
  789. right:20px;
  790. position:fixed;
  791. font-family:'sail';
  792. -webkit-filter: blur(.5px);
  793. -moz-filter: blur(.5px);
  794. -o-filter: blur(.5px);
  795. -ms-filter: blur(.5px);
  796. filter: blur(.5px);
  797.  
  798. }
  799. /*CREDIT END*/
  800.  
  801. </style>
  802.  
  803. <body>
  804. <!--sidebar begins here-->
  805. <div id="boxy">
  806. <div id="despacito">
  807. <h3>THE OPERATIVE</h3>
  808. Ind rp blog for Zane Flynt from the Borderlands series.
  809. <br><br>
  810. <i>Mutuals only.</i>
  811. <br><br>
  812. Please read my rules before interacting!
  813. <br><br>
  814. This blog is <b>low activity</b>!
  815. <br><br>
  816. <b>PENNED BY SERAPH.</b>
  817. <br><br>
  818. Icon credit: <a href="https://dresspheres.tumblr.com/post/612777222521192448/120-icons-zane-flynt-borderlands-3">dresspheres</a>
  819. <br><br>
  820. Blog graphics credit: <a href="https://nghread.tumblr.com/">nghread</a>
  821. </div>
  822. </div>
  823.  
  824. <!--sidebar end-->
  825.  
  826. <!--this is where you edit the size and titles of the scattered links, you can edit their content way below though. The #?w= determines the width of the pop up, make sure to give your popups different box numbers-->
  827. <div id="pops">
  828. <div id="linku1"> <a href="/" title="HOME.">●</a></div>
  829. <div id="linku2"> <a href="/ask" title="ASK.">●</a></div>
  830. <div id="linku3"> <a href="/bio" title="ABOUT.">●</a></div>
  831. <div id="linku4"> <a href="/rules" title="RULES.">●</a></div>
  832. <div id="linku5"> <a href="/hcs" title="HEADCANONS.">●</a></div>
  833. <div id="linku6"> <a href="/mun" title="MUN.">●</a></div>
  834.  
  835. </div>
  836. </div>
  837.  
  838. <!--/* DO /NOT/ REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */-->
  839. <div class="credit"><a href="https://ddkinzart.tumblr.com" title="code by ddkinzart">D.</a></div>
  840.  
  841. <!--below is where the post structure begins, don't edit below this point if you're not familiar with coding or tumblr theme attritibutes-->
  842.  
  843. {block:Pagination}
  844. <div class="pagi">
  845. {block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  846. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  847. </div>
  848. {/block:Pagination}
  849. <div id="container">
  850. <div id="entries">
  851. {block:Posts}
  852. <div id="content">
  853. {block:Text}{block:Title}<div class="titulo">{Title}</div>{/block:Title}{Body}{/block:Text}
  854. {block:Photo}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  855. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  856.  
  857. {block:Photoset}{Photoset}{block:Caption}{Caption}{/block:Caption}
  858. {/block:Photoset}
  859.  
  860. {block:Quote}<div class="quote">{Quote}</div>{block:Source}{Source}{/block:Source}{/block:Quote}
  861. {block:Link}
  862. {block:Thumbnail}
  863. <img src="{Thumbnail}" alt="{Name}" style="width:95%;border-radius:25px">
  864. {/block:Thumbnail}
  865. <div id="linku">
  866. <span style="font-size:20px">❝ </span> <a href="{URL}" class="link" {Target}>{Name}</a><span style="font-size:20px"> ❞</span>
  867. </div>
  868. {/block:Link}
  869.  
  870. {block:Chat}
  871. {block:Title}
  872. <div class="titulo">{Title}</div>{/block:Title}<br>
  873. <ul class="convo">{block:Lines}<li class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}
  874. {Line}</li>{/block:Lines}</ul>
  875. {/block:Chat}
  876.  
  877. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  878. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  879. {block:Answer}
  880. <div id="asker" style="text-align:center;">{Asker}</div><div id="ask">{Question}</div>
  881. <div id="answer">
  882. {Answer}</div>
  883. {/block:Answer}
  884. <div class="permalinks">
  885. {block:RebloggedFrom}
  886. <a href="{ReblogParentURL}" title="via: {ReblogParentName}" > ● </a>
  887. {/block:RebloggedFrom}
  888. <span style="letter-spacing:-0.5px">posted </span><a href="{Permalink}" title="{timeago}" style="letter-spacing:-0.1px;"> &nbsp;{timeago}</a>{block:NoteCount} with
  889. <a href="{Permalink}" title="{NoteCount} hits."> {NoteCount}</a> hits.{/block:NoteCount}
  890. {block:ContentSource}
  891. <a href="{SourceURL}" title="source: {SourceTitle}"> ● </a>
  892. {/block:ContentSource}
  893. <a href="{ReblogURL}" title="reblog" target="_blank"> ● </a>
  894. {/block:RebloggedFrom}
  895. </div>
  896. <div class="tags">
  897. {block:HasTags}
  898. {block:Tags}
  899. <!--you can change symbol before tags to something else--># <a href="{TagURL}" title="{Tag}">{Tag}</a>
  900. {/block:Tags}
  901. {/block:HasTags}
  902. {block:PostNotes}{PostNotes}{/block:PostNotes}
  903.  
  904. </div></div>
  905. {/block:Posts}
  906. </div>
  907. </div>
  908. </body>
  909.  
  910.  
  911. <!--important don't delete-->
  912. </div></div></div></div></div></div></div></div></div></div></div></div>
  913.  
  914.  
  915. </div></div>
  916.  
  917. </div></div></div></div></div></div></div></div></div></div>
  918.  
  919. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement