Advertisement
Guest User

clouds page theme by kuroneki

a guest
Nov 29th, 2015
3,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.44 KB | None | 0 0
  1. <head>
  2. <link rel="shortcut icon" href="///">
  3. <!-- replace /// with your favicon url! -->
  4.  
  5. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'> <!-- this is a font source, don't delete -->
  6.  
  7. <!-- start sparkle cursor trail script -->
  8. <script type="text/javascript">
  9. // <![CDATA[
  10. var colour="#fff"; // change ur sparkle colors here
  11. var sparkles=50;
  12.  
  13. /****************************
  14. * Tinkerbell Magic Sparkle *
  15. *(c)2005-13 mf2fm web-design*
  16. * http://www.mf2fm.com/rv *
  17. * DON'T EDIT BELOW THIS BOX *
  18. ****************************/
  19. var x=ox=400;
  20. var y=oy=300;
  21. var swide=800;
  22. var shigh=600;
  23. var sleft=sdown=0;
  24. var tiny=new Array();
  25. var star=new Array();
  26. var starv=new Array();
  27. var starx=new Array();
  28. var stary=new Array();
  29. var tinyx=new Array();
  30. var tinyy=new Array();
  31. var tinyv=new Array();
  32.  
  33. window.onload=function() { if (document.getElementById) {
  34. var i, rats, rlef, rdow;
  35. for (var i=0; i<sparkles; i++) {
  36. var rats=createDiv(3, 3);
  37. rats.style.visibility="hidden";
  38. rats.style.zIndex="999";
  39. document.body.appendChild(tiny[i]=rats);
  40. starv[i]=0;
  41. tinyv[i]=0;
  42. var rats=createDiv(5, 5);
  43. rats.style.backgroundColor="transparent";
  44. rats.style.visibility="hidden";
  45. rats.style.zIndex="999";
  46. var rlef=createDiv(1, 5);
  47. var rdow=createDiv(5, 1);
  48. rats.appendChild(rlef);
  49. rats.appendChild(rdow);
  50. rlef.style.top="2px";
  51. rlef.style.left="0px";
  52. rdow.style.top="0px";
  53. rdow.style.left="2px";
  54. document.body.appendChild(star[i]=rats);
  55. }
  56. set_width();
  57. sparkle();
  58. }}
  59.  
  60. function sparkle() {
  61. var c;
  62. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  63. ox=x;
  64. oy=y;
  65. for (c=0; c<sparkles; c++) if (!starv[c]) {
  66. star[c].style.left=(starx[c]=x)+"px";
  67. star[c].style.top=(stary[c]=y+1)+"px";
  68. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  69. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  70. star[c].style.visibility="visible";
  71. starv[c]=50;
  72. break;
  73. }
  74. }
  75. for (c=0; c<sparkles; c++) {
  76. if (starv[c]) update_star(c);
  77. if (tinyv[c]) update_tiny(c);
  78. }
  79. setTimeout("sparkle()", 40);
  80. }
  81.  
  82. function update_star(i) {
  83. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  84. if (starv[i]) {
  85. stary[i]+=1+Math.random()*3;
  86. starx[i]+=(i%5-2)/5;
  87. if (stary[i]<shigh+sdown) {
  88. star[i].style.top=stary[i]+"px";
  89. star[i].style.left=starx[i]+"px";
  90. }
  91. else {
  92. star[i].style.visibility="hidden";
  93. starv[i]=0;
  94. return;
  95. }
  96. }
  97. else {
  98. tinyv[i]=50;
  99. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  100. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  101. tiny[i].style.width="2px";
  102. tiny[i].style.height="2px";
  103. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  104. star[i].style.visibility="hidden";
  105. tiny[i].style.visibility="visible"
  106. }
  107. }
  108.  
  109. function update_tiny(i) {
  110. if (--tinyv[i]==25) {
  111. tiny[i].style.width="1px";
  112. tiny[i].style.height="1px";
  113. }
  114. if (tinyv[i]) {
  115. tinyy[i]+=1+Math.random()*3;
  116. tinyx[i]+=(i%5-2)/5;
  117. if (tinyy[i]<shigh+sdown) {
  118. tiny[i].style.top=tinyy[i]+"px";
  119. tiny[i].style.left=tinyx[i]+"px";
  120. }
  121. else {
  122. tiny[i].style.visibility="hidden";
  123. tinyv[i]=0;
  124. return;
  125. }
  126. }
  127. else tiny[i].style.visibility="hidden";
  128. }
  129.  
  130. document.onmousemove=mouse;
  131. function mouse(e) {
  132. if (e) {
  133. y=e.pageY;
  134. x=e.pageX;
  135. }
  136. else {
  137. set_scroll();
  138. y=event.y+sdown;
  139. x=event.x+sleft;
  140. }
  141. }
  142.  
  143. window.onscroll=set_scroll;
  144. function set_scroll() {
  145. if (typeof(self.pageYOffset)=='number') {
  146. sdown=self.pageYOffset;
  147. sleft=self.pageXOffset;
  148. }
  149. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  150. sdown=document.body.scrollTop;
  151. sleft=document.body.scrollLeft;
  152. }
  153. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  154. sleft=document.documentElement.scrollLeft;
  155. sdown=document.documentElement.scrollTop;
  156. }
  157. else {
  158. sdown=0;
  159. sleft=0;
  160. }
  161. }
  162.  
  163. window.onresize=set_width;
  164. function set_width() {
  165. var sw_min=999999;
  166. var sh_min=999999;
  167. if (document.documentElement && document.documentElement.clientWidth) {
  168. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  169. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  170. }
  171. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  172. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  173. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  174. }
  175. if (document.body.clientWidth) {
  176. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  177. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  178. }
  179. if (sw_min==999999 || sh_min==999999) {
  180. sw_min=800;
  181. sh_min=600;
  182. }
  183. swide=sw_min;
  184. shigh=sh_min;
  185. }
  186.  
  187. function createDiv(height, width) {
  188. var div=document.createElement("div");
  189. div.style.position="absolute";
  190. div.style.height=height+"px";
  191. div.style.width=width+"px";
  192. div.style.overflow="hidden";
  193. return (div);
  194. }
  195.  
  196. function newColour() {
  197. var c=new Array();
  198. c[0]=255;
  199. c[1]=Math.floor(Math.random()*256);
  200. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  201. c.sort(function(){return (0.5 - Math.random());});
  202. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  203. }
  204. // ]]>
  205. </script>
  206. <!-- end sparkle cursor trail script -->
  207.  
  208. <style type="text/css">
  209.  
  210. body {
  211. background-color: #97bae2; /* change background color here! */
  212. background-image: url("http://41.media.tumblr.com/5f886655bec38a20a4094802ca2accb2/tumblr_nyjh9xSo2D1tf8vylo1_1280.png"); /* replace /// with your bg image url! */
  213. background-size: 100% 100%;
  214. font-family: 'source sans pro'; /* font */
  215. font-size: 10px; /* change body font size here! */
  216. overflow: hidden;
  217. }
  218.  
  219. a {
  220. text-decoration: none; /* removes underlines from links */
  221. font-style: italic; /* makes links cursive, feel free to change */
  222. color: #7fafd4; /* change link color here */
  223. }
  224.  
  225. a:hover {
  226. color: #000000; /* change link hover color here */
  227. }
  228.  
  229.  
  230. #content {
  231. width: 780px;
  232. margin: auto;
  233. margin-top: 130px;
  234. }
  235.  
  236.  
  237. #credit { /* DO NOT REMOVE THIS */
  238. position:fixed;
  239. padding-right: 4px;
  240. padding-left: 4px;
  241. padding-bottom: 2px;
  242. bottom: 5px;
  243. left: 5px;
  244. font-size:18px;
  245. border-radius:10px;
  246. background: #000; /* feel free to recolor this to fit the rest */
  247. }
  248.  
  249. #credit a {
  250. color: #fff; /* feel free to recolor this to fit the rest */
  251. font-style: normal;
  252. }
  253.  
  254. .tabtext {
  255. color: #767676;
  256. font-family: 'source sans pro';
  257. font-size: 10px;
  258. padding-left: 10px;
  259. padding-right: 10px;
  260. }
  261.  
  262. .tabtext2 {
  263. color: #767676;
  264. font-family: 'source sans pro';
  265. font-size: 10px;
  266. padding-left: 10px;
  267. text-align:justify;
  268. border-left: 1px dotted;
  269. }
  270.  
  271.  
  272. .main {
  273. width: 100px;
  274. margin: -465px 100px auto;
  275. z-index:9;
  276. }
  277.  
  278. .tab {
  279. width:750px;
  280. margin: 0 auto;
  281. }
  282.  
  283. .tab label {
  284. position:relative;
  285. color: #767676;
  286. letter-spacing: 2px;
  287. font-size: 8px;
  288. line-height: 14px;
  289. font-weight: bold;
  290. width:100px;
  291. padding: 5px;
  292. text-transform: uppercase;
  293. height: 15px;
  294. text-align: center;
  295. cursor: pointer;
  296. display: block;
  297. margin-right: 137px;
  298. float:left;
  299. }
  300.  
  301. .tab label:hover {
  302. color:#000;
  303. }
  304.  
  305. [type=radio]:checked ~ label {
  306. z-index: 2;
  307. color: #000;
  308. }
  309.  
  310. .tab [type=radio] {
  311. display: none;
  312. }
  313.  
  314. .content {
  315. color: #999;
  316. background-color: #ffffff;
  317. width: 560px;
  318. height: 210px;
  319. margin-top: 285px;
  320. margin-left: 15px;
  321. padding-right: 10px;
  322. text-align: justify;
  323. position: absolute;
  324. overflow: auto;
  325. top:30px;
  326. }
  327.  
  328.  
  329. [type=radio]:checked ~ label ~ .content {
  330. z-index: 1;
  331. }
  332.  
  333.  
  334. .tab2header {
  335. width: 140px;
  336. height: 25px;
  337. background-color: #efcbde;
  338. color: #fff;
  339. text-align: center;
  340. line-height: 25px;
  341. border-radius: 10px; /* delete this line if u want square corners */
  342. text-transform: lowercase;
  343. font-family: 'source sans pro';
  344. font-size: 10px;
  345. font-style: italic;
  346. }
  347.  
  348.  
  349. .tab2block {
  350. background-color: #fff;
  351. width: 120px;
  352. padding: 10px;
  353. text-align: justify;
  354. line-height: 12px;
  355. margin-right: 10px;
  356. font-family: 'source sans pro';
  357. font-size: 10px;
  358. }
  359.  
  360. .tab2block a {
  361. font-style: normal;
  362. text-transform: lowercase;
  363. }
  364.  
  365.  
  366. .tab2links {
  367. color: #999; /* links font color */
  368. display: block;
  369. padding: 7px;
  370. margin-bottom: 3px;
  371. text-align: center;
  372. background-color: #fff; /* links bg color */
  373. border-radius: 10px; /* delete this line if u want square corners */
  374. }
  375.  
  376. #kinname {
  377. text-align: center;
  378. text-transform: uppercase;
  379. font-family: 'source sans pro';
  380. font-style: italic;
  381. font-size: 10px;
  382. color: #ffffff; /* font color */
  383. letter-spacing: 1px;
  384. padding-top: 3px;
  385. text-shadow:
  386. -1px -1px 0 #a9cfec,
  387. 1px -1px 0 #a9cfec,
  388. -1px 1px 0 #a9cfec,
  389. 1px 1px 0 #a9cfec; /* text shadow, mess around with this if u want */
  390. }
  391.  
  392.  
  393.  
  394. </style>
  395.  
  396.  
  397. <body>
  398. <div id="content">
  399.  
  400. <div id="clouds"><img src="http://i.imgur.com/yy0hUiA.png" draggable="false"></div>
  401.  
  402. <!-- tabs div start -->
  403. <div class="main">
  404.  
  405. <div class="tab">
  406. <input type="radio" id="tab-1" name="tab-group-1" checked>
  407. <label for="tab-1">About</label> <!-- tab #1 name -->
  408. <div class="content">
  409.  
  410. <table width="550">
  411. <tr>
  412. <td>
  413. <img src="http://i.imgur.com/Ni2x2X5.png"> <!-- 200x100px -->
  414. </td>
  415. <td width="150px">
  416. <div class="tabtext">
  417. <b>Name</b>: Jay<br>
  418. <b>Age</b>: 20<br>
  419. <b>Location</b>: Netherlands<br>
  420. <b>Gender</b>: Male<br>
  421. <b>Pronouns</b>: He/him<br>
  422. <b>Sexuality</b>: Gay & Asexual<br>
  423. <b>Zodiac</b>: Aquarius<br>
  424. <b>MBTI</b>: ISTJ<br>
  425. <b>Alignment</b>: Chaotic neutral<br>
  426. <b>Hogwarts house</b>: Hufflepuff<br>
  427. <b>TERA</b>: Wizard, Highwatch<br>
  428. <b>BnS</b>: Rose Quartz, NA<br>
  429. <b>Art credit</b>: <a href="http://www.pixiv.net/member.php?id=1627564">here!</a>
  430. <br><br><br>
  431. <!-- add/remove extra "br" tags above to push content up/down -->
  432. </div>
  433. </td>
  434. <td><div class="tabtext2">
  435. normal <a href="/">link</a> <b>bold</b> <i>italic</i> <s>strike</s> <u>underline</u><br>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.
  436. </div></td>
  437. </tr>
  438. </table>
  439.  
  440. </div>
  441. </div>
  442.  
  443. <div class="tab">
  444. <input type="radio" id="tab-2" name="tab-group-1">
  445. <label for="tab-2">Links</label> <!-- tab #2 name -->
  446. <div class="content">
  447.  
  448. <table width="550px"><tr>
  449. <td>
  450. <div class="tab2header">section header</div>
  451.  
  452. <div class="tab2block">
  453. <a href="/" class="tab2links">★ link here! ★</a>
  454. <a href="/" class="tab2links">★ link here! ★</a>
  455. <a href="/" class="tab2links">★ link here! ★</a>
  456. <a href="/" class="tab2links">★ link here! ★</a>
  457. <a href="/" class="tab2links">★ link here! ★</a>
  458. </div>
  459. </td>
  460. <td width="43"></td>
  461. <td>
  462. <div class="tab2header">section header</div>
  463.  
  464. <div class="tab2block">
  465. <a href="/" class="tab2links">★ link here! ★</a>
  466. <a href="/" class="tab2links">★ link here! ★</a>
  467. <a href="/" class="tab2links">★ link here! ★</a>
  468. <a href="/" class="tab2links">★ link here! ★</a>
  469. <a href="/" class="tab2links">★ link here! ★</a>
  470. </div>
  471. </td>
  472. <td width="43"></td>
  473. <td>
  474. <div class="tab2header">section header</div>
  475.  
  476. <div class="tab2block">
  477. <a href="/" class="tab2links">★ link here! ★</a>
  478. <a href="/" class="tab2links">★ link here! ★</a>
  479. <a href="/" class="tab2links">★ link here! ★</a>
  480. <a href="/" class="tab2links">★ link here! ★</a>
  481. <a href="/" class="tab2links">★ link here! ★</a>
  482. </div>
  483. </td>
  484. </tr></table>
  485. </div>
  486. </div>
  487.  
  488. <div class="tab">
  489. <input type="radio" id="tab-3" name="tab-group-1">
  490. <label for="tab-3">Kins</label> <!-- tab #3 name -->
  491. <div class="content">
  492. <!-- make sure all kin imgs are 100x80px -->
  493. <table>
  494. <tr>
  495. <td width="109">
  496. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  497. <div id="kinname">name here!</div><!-- kin name here -->
  498. </td>
  499. <td width="109">
  500. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  501. <div id="kinname">name here!</div><!-- kin name here -->
  502. </td>
  503. <td width="109">
  504. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  505. <div id="kinname">name here!</div><!-- kin name here -->
  506. </td>
  507. <td width="109">
  508. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  509. <div id="kinname">name here!</div><!-- kin name here -->
  510. </td>
  511. <td width="109">
  512. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  513. <div id="kinname">name here!</div><!-- kin name here -->
  514. </td>
  515. </tr>
  516. <tr>
  517. <td>
  518. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  519. <div id="kinname">name here!</div><!-- kin name here -->
  520. </td>
  521. <td>
  522. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  523. <div id="kinname">name here!</div><!-- kin name here -->
  524. </td>
  525. <td>
  526. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  527. <div id="kinname">name here!</div><!-- kin name here -->
  528. </td>
  529. <td>
  530. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  531. <div id="kinname">name here!</div><!-- kin name here -->
  532. </td>
  533. <td>
  534. <img src="http://i.imgur.com/SGGozIM.png"> <!-- img here -->
  535. <div id="kinname">name here!</div><!-- kin name here -->
  536. </td>
  537. </tr>
  538.  
  539. </table>
  540.  
  541.  
  542. </div>
  543. </div>
  544.  
  545. </div>
  546. <!-- tabs div end -->
  547.  
  548.  
  549.  
  550. </div>
  551.  
  552.  
  553. <div id="credit"><a href="http://kuroneki.tumblr.com/" title="theme by kuroneki">✿</a></div>
  554. </body>
  555.  
  556.  
  557. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement