Advertisement
foundcas

capecoding js exception request

Oct 7th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>capecode themes</title>
  6. <link rel="icon" href="{Favicon}">
  7. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  8. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  9. <script>
  10. (function($){
  11. $(document).ready(function(){
  12. $("[title]").style_my_tooltips({
  13. tip_follows_cursor:true,
  14. tip_delay_time:200,
  15. tip_fade_speed:300
  16. }
  17. );
  18. });
  19. })(jQuery);
  20. </script>
  21.  
  22. <!------- filter scripts -------->
  23. <script src="http://static.tumblr.com/fuu6t9w/kh8ml0pl9/jquery-1.7.1.min.js"></script>
  24. <script src="http://static.tumblr.com/fuu6t9w/eubml0pm0/jquery.isotope.min.js"></script>
  25. <script>
  26. $(function(){
  27.  
  28. var $container = $('#container');
  29.  
  30. $container.isotope({
  31. itemSelector : '.theme'
  32. });
  33.  
  34.  
  35. var $optionSets = $('#sort .option-set'),
  36. $optionLinks = $optionSets.find('a');
  37.  
  38. $optionLinks.click(function(){
  39. var $this = $(this);
  40. // don't proceed if already selected
  41. if ( $this.hasClass('selected') ) {
  42. return false;
  43. }
  44. var $optionSet = $this.parents('.option-set');
  45. $optionSet.find('.selected').removeClass('selected');
  46. $this.addClass('selected');
  47.  
  48. // make option object dynamically, i.e. { filter: '.my-filter-class' }
  49. var options = {},
  50. key = $optionSet.attr('data-option-key'),
  51. value = $this.attr('data-option-filter');
  52. // parse 'false' as false boolean
  53. value = value === 'false' ? false : value;
  54. options[ key ] = value;
  55. if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
  56. // changes in layout modes need extra logic
  57. changeLayoutMode( $this, options )
  58. } else {
  59. // otherwise, apply new options
  60. $container.isotope( options );
  61. }
  62.  
  63. return false;
  64. });
  65.  
  66.  
  67. });
  68. </script>
  69.  
  70. <!-----end filter scripts------>
  71.  
  72. <style type="text/css">
  73. #s-m-t-tooltip{
  74. max-width:300px;
  75. margin:15px;
  76. padding:2px 8px;
  77. border:1px solid #000;
  78. background:rgba(255,255,255,.3);
  79. color:#000;
  80. z-index:999999;
  81. font-size:10px;
  82. font-style:italic;
  83. text-transform:lowercase;
  84. box-shadow:1px 1px 3px rgba(204, 221, 221, 0.3);
  85. }
  86. .iframe-controls--desktop {
  87. position:fixed;
  88. right:0px;
  89. z-index:999999999999;
  90. filter:invert(100%);
  91. -webkit-filter:invert(100%);
  92. -webkit-transform:scale(0.8,0.8);
  93. -webkit-transform-origin: 100% 0%;
  94. -ms-transform-origin:100% 0%;
  95. -ms-transform:scale(0.8,0.8);
  96. transform:scale(0.8,0.8);
  97. transform-origin:100% 0%;
  98. }
  99. ::selection{
  100. color:#334455;
  101. background:rgba(255,255,255,.3);
  102. }
  103.  
  104. ::-webkit-scrollbar{
  105. background:none;
  106. width:4px;
  107. }
  108.  
  109. ::-webkit-scrollbar-thumb{
  110. background:#fff;
  111. border:1px solid #333;
  112. }
  113.  
  114. a{
  115. color:#333;
  116. text-decoration:underline;
  117. }
  118.  
  119. a:hover{
  120. cursor:help;
  121. }
  122.  
  123. body{
  124. font-family:candara;
  125. font-size:14px;
  126. cursor:crosshair;
  127. margin:0px;
  128. color:#7ca2a2;
  129. background:#fafafa;
  130. }
  131. #container{
  132. width:calc(100% - 250px);
  133. margin:20px auto 20px 250px;
  134. }
  135.  
  136. .theme{
  137. margin:30px;
  138. border:1px solid #7ca2a2;
  139. -moz-transition:.8s ease;
  140. -webkit-transition:.8s ease;
  141. -o-transition:.8s ease;
  142. }
  143.  
  144. .theme .info{
  145. border-top:1px solid #7ca2a2;
  146. background:#fff;
  147. width:290px;
  148. margin-top:-3px;
  149. padding:10px 5px;
  150. text-transform:uppercase;
  151. }
  152.  
  153. .info a{
  154. color:#7ca2a2;
  155. margin:0px 4px;
  156. }
  157.  
  158. .theme img{
  159. height:175px;
  160. width:300px;
  161. }
  162.  
  163. #menu{
  164. position:fixed;
  165. top:0px;
  166. height:100%;
  167. width:250px;
  168. overflow-y:auto;
  169. z-index:9;
  170. border-bottom:1px solid #7ca2a2;
  171. background:#fafafa;
  172. }
  173.  
  174. #menu li{
  175. list-style-type:none;
  176. margin:10px;
  177. display:inline-block;
  178. background:#d7eaea;
  179. padding:10px;
  180. border-radius:30px;
  181. }
  182.  
  183. #menu li a{
  184. color:#000;
  185. text-transform:uppercase;
  186. }
  187.  
  188. </style>
  189. </head>
  190. <body>
  191.  
  192.  
  193. <div id="menu">
  194. <li><b><a href="/">back to capecode</a></b></li>
  195. <div id="sort">
  196. <ul id="filters" class="option-set clearfix" data-option-key="filter">
  197. <li><a href="#filter" data-option-filter=".theme">all codes</a></li>
  198. <li><a href="#filter" data-option-filter=".th">all themes</a></li>
  199. <li><a href="#filter" data-option-filter=".250px">250px</a></li>
  200. <li><a href="#filter" data-option-filter=".400px">400px</a></li>
  201. <li><a href="#filter" data-option-filter=".500px">500px</a></li>
  202. <li><a href="#filter" data-option-filter=".540px">540px</a></li>
  203. <li><a href="#filter" data-option-filter=".resp">responsive</a></li>
  204. <li><a href="#filter" data-option-filter=".base">base codes</a></li>
  205. <li><a href="#filter" data-option-filter=".bb">bottom bar</a></li>
  206. <li><a href="#filter" data-option-filter=".cont">contained</a></li>
  207. <li><a href="#filter" data-option-filter=".header">header</a></li>
  208. <li><a href="#filter" data-option-filter=".jpagi">jump pagination</a></li>
  209. <li><a href="#filter" data-option-filter=".ask">pop up ask</a></li>
  210. <li><a href="#filter" data-option-filter=".sidebar">sidebar</a></li>
  211. <li><a href="#filter" data-option-filter=".img">sidebar img (1)</a></li>
  212. <li><a href="#filter" data-option-filter=".img1">sidebar img (1+)</a></li>
  213. <li><a href="#filter" data-option-filter=".sub">subtitle</a></li>
  214. <li><a href="#filter" data-option-filter=".updt">updates tab</a></li>
  215. <li><a href="#filter" data-option-filter=".pg">all pages</a></li>
  216. <li><a href="#filter" data-option-filter=".roll">blogroll</a></li>
  217. <li><a href="#filter" data-option-filter=".net">network pages</a></li>
  218. <li><a href="#filter" data-option-filter=".mul">multipurpose pages</a></li>
  219.  
  220. </ul>
  221. </div>
  222. </div>
  223.  
  224.  
  225. <div id="container">
  226.  
  227. <div class="theme th 600px 540px 500px 250px sidebar img img1 resp">
  228. <img src="https://64.media.tumblr.com/7233ae18602c8b2d379b6a70be763703/9e1cf2e1fc48d421-0b/s400x600/b0631f0d78a1b11a3a79ea842c680e3fa0cd659c.png"><br>
  229. <div class="info">
  230. lavender
  231. <span style="float:right">
  232. <a title="live preview" href="https://capecoding-lavender.tumblr.com">view</a>
  233. <a href="https://foundcas.tumblr.com/post/643578397518446592/lavender-theme-by-foundcas-capecoding-live">code</a>
  234. </span>
  235. </div>
  236. </div>
  237.  
  238. <div class="theme th 540px 500px sidebar img resp">
  239. <img src="https://64.media.tumblr.com/fdaff42093f95eb7c7a9da62d5c26bb1/9669190b2b99cd3c-5b/s1280x1920/ee576f47c73db6710b5a469a09ab8baccae61980.png"><br>
  240. <div class="info">
  241. beaded
  242. <span style="float:right">
  243. <a href="/th26">view</a>
  244. <a href="https://foundcas.tumblr.com/post/640502861530284032/new-year-new-theme-beaded-preview-code-check">code</a>
  245. </span>
  246. </div>
  247. </div>
  248.  
  249. <div class="theme pg mul">
  250. <img src="https://64.media.tumblr.com/edfacd681488b80041308760ef8ba59e/38f6684e443e4e2e-a7/s1280x1920/aadb2a4ed4b8eec678fa30d7c79394a533ce37ad.png"><br>
  251. <div class="info">
  252. 화려한
  253. <span style="float:right">
  254. <a href="https://foundcas.tumblr.com/pg5">view</a>
  255. <a href="https://foundcas.tumblr.com/post/640234267019018240/page-5-%ED%99%94%EB%A0%A4%ED%95%9C-preview-check-source-link-for-code">code</a>
  256. </span>
  257. </div>
  258. </div>
  259.  
  260. <div class="theme th 500px sidebar img header ">
  261. <img src="https://64.media.tumblr.com/1ab24b05c7922fdeb574b4b8c0cca2f4/d51e7aec93492a2d-d3/s1280x1920/6aae3d8c48aeff390075b655ebe7467d17a4a3ba.png"><br>
  262. <div class="info">
  263. apollo 11
  264. <span style="float:right">
  265. <a href="/th25">view</a>
  266. <a href="https://foundcas.tumblr.com/post/639420556756877312/theme-25-apollo-11-check-source-link-for-preview">code</a>
  267. </span>
  268. </div>
  269. </div>
  270.  
  271. <div class="theme pg mul">
  272. <img src="https://66.media.tumblr.com/f03b49352aab8927489b09b9c9e6b233/tumblr_oaxs849ZT81slcenxo3_1280.png"><br>
  273. <div class="info">
  274. 하루의 끝
  275. <span style="float:right">
  276. <a href="http://foundcas.tumblr.com/oceanic">view</a>
  277. <a href="http://orablyro.com/63xG">code</a>
  278. </span>
  279. </div>
  280. </div>
  281.  
  282.  
  283. <div class="theme th bb 250px cont">
  284. <img src="https://41.media.tumblr.com/9163cad7832eb91034d506a9fc755f04/tumblr_nraqffLqRU1slcenxo4_400.jpg"><br>
  285. <div class="info">
  286. ἀγάπη
  287. <span style="float:right">
  288. <a href="/th23">view</a>
  289. <a href="http://foundcas.tumblr.com/post/123763661284/theme-pack-by-foundcas-capecoding-theme">code</a>
  290. </span>
  291. </div>
  292. </div>
  293.  
  294.  
  295. <div class="theme th header updt">
  296. <img src="https://41.media.tumblr.com/ca9963b50db02edf805a2f13b3b1b20e/tumblr_nraqffLqRU1slcenxo2_400.jpg"><br>
  297. <div class="info">
  298. στοργή
  299. <span style="float:right">
  300. <a href="/th22">view</a>
  301. <a href="http://foundcas.tumblr.com/post/123763661284/theme-pack-by-foundcas-capecoding-theme">code</a>
  302. </span>
  303. </div>
  304. </div>
  305.  
  306.  
  307. <div class="theme th sidebar 400px img img1">
  308. <img src="https://41.media.tumblr.com/5b53feb54ad0de8014f29fdceffd1dc0/tumblr_nraqffLqRU1slcenxo3_400.jpg"><br>
  309. <div class="info">
  310. ἔρως
  311. <span style="float:right">
  312. <a href="/th21">view</a>
  313. <a href="http://foundcas.tumblr.com/post/123763661284/theme-pack-by-foundcas-capecoding-theme">code</a>
  314. </span>
  315. </div>
  316. </div>
  317.  
  318.  
  319. <div class="theme th sidebar jpagi 400px">
  320. <img src="https://40.media.tumblr.com/43b1ab0ee96c71c64681cee903a6847b/tumblr_nraqffLqRU1slcenxo1_400.jpg"><br>
  321. <div class="info">
  322. φιλία
  323. <span style="float:right">
  324. <a href="/th20">view</a>
  325. <a href="http://foundcas.tumblr.com/post/123763661284/theme-pack-by-foundcas-capecoding-theme">code</a>
  326. </span>
  327. </div>
  328. </div>
  329.  
  330.  
  331. <div class="theme pg mul">
  332. <img src="http://36.media.tumblr.com/127b2b84787e03b3553a26f88b6a57a2/tumblr_nqkd88cX661slcenxo1_250.jpg"><br>
  333. <div class="info">
  334. erratum
  335. <span style="float:right">
  336. <a href="http://foundcas.tumblr.com/pg3">view</a>
  337. <a href="http://foundcas.tumblr.com/post/122520275784/erratum-o-page-3-multipurpose-01-preview">code</a>
  338. </span>
  339. </div>
  340. </div>
  341.  
  342.  
  343. <div class="theme pg roll">
  344. <img src="http://41.media.tumblr.com/34646cd0ab4fcba19d5e529e3d33105d/tumblr_nmpwvevGbq1slcenxo1_400.png"><br>
  345. <div class="info">
  346. blogscape
  347. <span style="float:right">
  348. <a href="/pg2">view</a>
  349. <a href="http://foundcas.tumblr.com/post/116249242669/blogscape-o-page-2-blogroll-01-preview-code">code</a>
  350. </span>
  351. </div>
  352. </div>
  353.  
  354.  
  355. <div class="theme pg net">
  356. <img src="http://i.imgur.com/5PVKRSK.png"><br>
  357. <div class="info">
  358. per volar sunata
  359. <span style="float:right">
  360. <a href="/pg1">view</a>
  361. <a href="http://foundcas.tumblr.com/post/113700366004/per-volar-sunata-o-page-1-network-01-preview">code</a>
  362. </span>
  363. </div>
  364. </div>
  365.  
  366.  
  367. <div class="theme th 500px header ask jpagi">
  368. <img src="http://41.media.tumblr.com/1b53b78d4ecd671fe5720b57556e06cf/tumblr_nk4wyqcYg41slcenxo1_400.png"><br>
  369. <div class="info">
  370. blank space
  371. <span style="float:right">
  372. <a href="/th19">view</a>
  373. <a href="http://foundcas.tumblr.com/post/111676120174/blank-space-theme-19-by">code</a>
  374. </span>
  375. </div>
  376. </div>
  377.  
  378.  
  379. <div class="theme th 500px cont ask">
  380. <img src="http://41.media.tumblr.com/67ebe630cace627b6aad6aec97807d92/tumblr_njocxbaRMs1slcenxo3_400.png"><br>
  381. <div class="info">
  382. collide
  383. <span style="float:right">
  384. <a href="/th18">view</a>
  385. <a href="http://foundcas.tumblr.com/post/110831141979/collide-theme-18-by-foundcas-capecoding-preview">code</a>
  386. </span>
  387. </div>
  388. </div>
  389.  
  390.  
  391. <div class="theme th 250px 400px header">
  392. <img src="http://40.media.tumblr.com/2a9d18e797edc331a69840a3b8d92c44/tumblr_nfo4ow6P5u1slcenxo1_400.png"><br>
  393. <div class="info">
  394. exploration
  395. <span style="float:right">
  396. <a href="/th15">view</a>
  397. <a href="http://foundcas.tumblr.com/post/103672778014/exploration-theme-15-by">code</a>
  398. </span>
  399. </div>
  400. </div>
  401.  
  402.  
  403. <div class="theme th 250px sidebar cont img updt">
  404. <img src="http://40.media.tumblr.com/8add5d37b398bd3665d3bc92b5a86d98/tumblr_nckkevbieD1slcenxo1_400.png"><br>
  405. <div class="info">
  406. possibility
  407. <span style="float:right">
  408. <a href="/th13p">view</a>
  409. <a href="http://foundcas.tumblr.com/post/98560628879/possibility-theme-13-by-foundcas-capecoding">code</a>
  410. </span>
  411. </div>
  412. </div>
  413.  
  414.  
  415. <div class="theme th 500px header sidebar updt jpagi">
  416. <img src="http://41.media.tumblr.com/f2ed8d00db12052b9c2e52885ac11abf/tumblr_nb76mr4UzZ1slcenxo1_400.png"><br>
  417. <div class="info">
  418. and you love the sea
  419. <span style="float:right">
  420. <a href="/th12ts">view</a>
  421. <a href="http://foundcas.tumblr.com/post/96312459839/and-you-love-the-sea-theme-12-by">code</a>
  422. </span>
  423. </div>
  424. </div>
  425.  
  426.  
  427. <div class="theme base">
  428. <img src="http://41.media.tumblr.com/3383cbe0e35081a565265363badd1c66/tumblr_n7y6ccWAJh1slcenxo1_400.png"><br>
  429. <div class="info">
  430. base code 01
  431. <span style="float:right">
  432. <a href="/base1">view</a>
  433. <a href="http://foundcas.tumblr.com/post/90281435259/base-code-1-by-foundcas-preview-code-200px">code</a>
  434. </span>
  435. </div>
  436. </div>
  437.  
  438.  
  439. <div class="theme th 500px header jpagi">
  440. <img src="http://40.media.tumblr.com/c3cac92ad9c06796a1adcf2651556651/tumblr_n784izor311slcenxo1_400.png"><br>
  441. <div class="info">
  442. grace
  443. <span style="float:right">
  444. <a href="/th5grace">view</a>
  445. <a href="http://foundcas.tumblr.com/post/88878331834/grace-theme-5-by-foundcas-preview-code">code</a>
  446. </span>
  447. </div>
  448. </div>
  449.  
  450.  
  451. <div class="theme th 500px sidebar img img1 jpagi">
  452. <img src="http://41.media.tumblr.com/07a5530cd80a445ea42193f86ee0f3c0/tumblr_n74wd5B2B41slcenxo1_400.png"><br>
  453. <div class="info">
  454. game,set,match.
  455. <span style="float:right">
  456. <a href="/theme4">view</a>
  457. <a href="http://foundcas.tumblr.com/post/88716344274/game-set-match-theme-4-by">code</a>
  458. </span>
  459. </div>
  460. </div>
  461.  
  462.  
  463. </div>
  464.  
  465. </body>
  466. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement