Advertisement
Guest User

Hakuoki HTML

a guest
Nov 3rd, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.29 KB | None | 0 0
  1. <br><meta http-equiv="content-type" content="text/html; charset=utf-8"><link rel="icon" href=" " type="image/x-icon"><script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script><script>
  2. var b = function (p, G) {
  3. var d = a.extend({}, a.fn.nivoSlider.defaults, G);
  4. var e = {
  5. currentSlide: 0,
  6. currentImage: "",
  7. totalSlides: 0,
  8. running: false,
  9. paused: false,
  10. stop: false
  11. };
  12. var f = a(p);
  13. f.data("nivo:vars", e);
  14. f.css("position", "relative");
  15. f.addClass("nivoSlider");
  16. var g = f.children();
  17. g.each(function () {
  18. var u = a(this);
  19. var r = "";
  20. if (!u.is("img")) {
  21. if (u.is("a")) {
  22. u.addClass("nivo-imageLink");
  23. r = u
  24. }
  25. u = u.find("img:first")
  26. }
  27. var s = u.width();
  28. if (s == 0) {
  29. s = u.attr("width")
  30. }
  31. var t = u.height();
  32. if (t == 0) {
  33. t = u.attr("height")
  34. }
  35. if (s > f.width()) {
  36. f.width(s)
  37. }
  38. if (t > f.height()) {
  39. f.height(t)
  40. }
  41. if (r != "") {
  42. r.css("display", "none")
  43. }
  44. u.css("display", "none");
  45. e.totalSlides++
  46. });
  47. if (d.randomStart) {
  48. d.startSlide = Math.floor(Math.random() * e.totalSlides)
  49. }
  50. if (d.startSlide > 0) {
  51. if (d.startSlide >= e.totalSlides) {
  52. d.startSlide = e.totalSlides - 1
  53. }
  54. e.currentSlide = d.startSlide
  55. }
  56. if (a(g[e.currentSlide]).is("img")) {
  57. e.currentImage = a(g[e.currentSlide])
  58. } else {
  59. e.currentImage = a(g[e.currentSlide]).find("img:first")
  60. }
  61. if (a(g[e.currentSlide]).is("a")) {
  62. a(g[e.currentSlide]).css("display", "block")
  63. }
  64. f.css("background", 'url("' + e.currentImage.attr("src") + '") no-repeat');
  65. f.append(a('<div class="nivo-caption"><p></p></div>').css({
  66. display: "none",
  67. opacity: d.captionOpacity
  68. }));
  69. var h = function (t) {
  70. var r = a(".nivo-caption", f);
  71. if (e.currentImage.attr("title") != "" && e.currentImage.attr("title") != undefined) {
  72. var s = e.currentImage.attr("title");
  73. if (s.substr(0, 1) == "#") {
  74. s = a(s).html()
  75. }
  76. if (r.css("display") == "block") {
  77. r.find("p").stop().fadeOut(t.animSpeed, function () {
  78. a(this).html(s);
  79. a(this).stop().fadeIn(t.animSpeed)
  80. })
  81. } else {
  82. r.find("p").html(s)
  83. }
  84. r.stop().fadeIn(t.animSpeed)
  85. } else {
  86. r.stop().fadeOut(t.animSpeed)
  87. }
  88. };
  89. h(d);
  90. var i = 0;
  91. if (!d.manualAdvance && g.length > 1) {
  92. i = setInterval(function () {
  93. q(f, g, d, false)
  94. }, d.pauseTime)
  95. }
  96. if (d.directionNav) {
  97. f.append('<div class="nivo-directionNav"><a class="nivo-prevNav">' + d.prevText + '</a><a class="nivo-nextNav">' + d.nextText + "</a></div>");
  98. if (d.directionNavHide) {
  99. a(".nivo-directionNav", f).hide();
  100. f.hover(function () {
  101. a(".nivo-directionNav", f).show()
  102. }, function () {
  103. a(".nivo-directionNav", f).hide()
  104. })
  105. }
  106. a("a.nivo-prevNav", f).live("click", function () {
  107. if (e.running) {
  108. return false
  109. }
  110. clearInterval(i);
  111. i = "";
  112. e.currentSlide -= 2;
  113. q(f, g, d, "prev")
  114. });
  115. a("a.nivo-nextNav", f).live("click", function () {
  116. if (e.running) {
  117. return false
  118. }
  119. clearInterval(i);
  120. i = "";
  121. q(f, g, d, "next")
  122. })
  123. }
  124. if (d.controlNav) {
  125. var k = a('<div class="nivo-controlNav"></div>');
  126. f.append(k);
  127. for (var l = 0; l < g.length; l++) {
  128. if (d.controlNavThumbs) {
  129. var m = g.eq(l);
  130. if (!m.is("img")) {
  131. m = m.find("img:first")
  132. }
  133. if (d.controlNavThumbsFromRel) {
  134. k.append('<a class="nivo-control" rel="' + l + '"><img src="' + m.attr("rel") + '" alt="" /></a>')
  135. } else {
  136. k.append('<a class="nivo-control" rel="' + l + '"><img src="' + m.attr("src").replace(d.controlNavThumbsSearch, d.controlNavThumbsReplace) + '" alt="" /></a>')
  137. }
  138. } else {
  139. k.append('<a class="nivo-control" rel="' + l + '">' + (l + 1) + "</a>")
  140. }
  141. }
  142. a(".nivo-controlNav a:eq(" + e.currentSlide + ")", f).addClass("active");
  143. a(".nivo-controlNav a", f).live("click", function () {
  144. if (e.running) {
  145. return false
  146. }
  147. if (a(this).hasClass("active")) {
  148. return false
  149. }
  150. clearInterval(i);
  151. i = "";
  152. f.css("background", 'url("' + e.currentImage.attr("src") + '") no-repeat');
  153. e.currentSlide = a(this).attr("rel") - 1;
  154. q(f, g, d, "control")
  155. })
  156. }
  157. if (d.keyboardNav) {
  158. a(window).keypress(function (r) {
  159. if (r.keyCode == "37") {
  160. if (e.running) {
  161. return false
  162. }
  163. clearInterval(i);
  164. i = "";
  165. e.currentSlide -= 2;
  166. q(f, g, d, "prev")
  167. }
  168. if (r.keyCode == "39") {
  169. if (e.running) {
  170. return false
  171. }
  172. clearInterval(i);
  173. i = "";
  174. q(f, g, d, "next")
  175. }
  176. })
  177. }
  178. if (d.pauseOnHover) {
  179. f.hover(function () {
  180. e.paused = true;
  181. clearInterval(i);
  182. i = ""
  183. }, function () {
  184. e.paused = false;
  185. if (i == "" && !d.manualAdvance) {
  186. i = setInterval(function () {
  187. q(f, g, d, false)
  188. }, d.pauseTime)
  189. }
  190. })
  191. }
  192. f.bind("nivo:animFinished", function () {
  193. e.running = false;
  194. a(g).each(function () {
  195. if (a(this).is("a")) {
  196. a(this).css("display", "none")
  197. }
  198. });
  199. if (a(g[e.currentSlide]).is("a")) {
  200. a(g[e.currentSlide]).css("display", "block")
  201. }
  202. if (i == "" && !e.paused && !d.manualAdvance) {
  203. i = setInterval(function () {
  204. q(f, g, d, false)
  205. }, d.pauseTime)
  206. }
  207. d.afterChange.call(this)
  208. });
  209. var n = function (v, r, s) {
  210. for (var t = 0; t < r.slices; t++) {
  211. var u = Math.round(v.width() / r.slices);
  212. if (t == r.slices - 1) {
  213. v.append(a('<div class="nivo-slice"></div>').css({
  214. left: u * t + "px",
  215. width: v.width() - u * t + "px",
  216. height: "0px",
  217. opacity: "0",
  218. background: 'url("' + s.currentImage.attr("src") + '") no-repeat -' + (u + t * u - u) + "px 0%"
  219. }))
  220. } else {
  221. v.append(a('<div class="nivo-slice"></div>').css({
  222. left: u * t + "px",
  223. width: u + "px",
  224. height: "0px",
  225. opacity: "0",
  226. background: 'url("' + s.currentImage.attr("src") + '") no-repeat -' + (u + t * u - u) + "px 0%"
  227. }))
  228. }
  229. }
  230. };
  231. var o = function (v, w, x) {
  232. var r = Math.round(v.width() / w.boxCols);
  233. var s = Math.round(v.height() / w.boxRows);
  234. for (var t = 0; t < w.boxRows; t++) {
  235. for (var u = 0; u < w.boxCols; u++) {
  236. if (u == w.boxCols - 1) {
  237. v.append(a('<div class="nivo-box"></div>').css({
  238. opacity: 0,
  239. left: r * u + "px",
  240. top: s * t + "px",
  241. width: v.width() - r * u + "px",
  242. height: s + "px",
  243. background: 'url("' + x.currentImage.attr("src") + '") no-repeat -' + (r + u * r - r) + "px -" + (s + t * s - s) + "px"
  244. }))
  245. } else {
  246. v.append(a('<div class="nivo-box"></div>').css({
  247. opacity: 0,
  248. left: r * u + "px",
  249. top: s * t + "px",
  250. width: r + "px",
  251. height: s + "px",
  252. background: 'url("' + x.currentImage.attr("src") + '") no-repeat -' + (r + u * r - r) + "px -" + (s + t * s - s) + "px"
  253. }))
  254. }
  255. }
  256. }
  257. };
  258. var q = function (r, s, t, u) {
  259. var v = r.data("nivo:vars");
  260. if (v && v.currentSlide == v.totalSlides - 1) {
  261. t.lastSlide.call(this)
  262. }
  263. if ((!v || v.stop) && !u) {
  264. return false
  265. }
  266. t.beforeChange.call(this);
  267. if (!u) {
  268. r.css("background", 'url("' + v.currentImage.attr("src") + '") no-repeat')
  269. } else {
  270. if (u == "prev") {
  271. r.css("background", 'url("' + v.currentImage.attr("src") + '") no-repeat')
  272. }
  273. if (u == "next") {
  274. r.css("background", 'url("' + v.currentImage.attr("src") + '") no-repeat')
  275. }
  276. }
  277. v.currentSlide++;
  278. if (v.currentSlide == v.totalSlides) {
  279. v.currentSlide = 0;
  280. t.slideshowEnd.call(this)
  281. }
  282. if (v.currentSlide < 0) {
  283. v.currentSlide = v.totalSlides - 1
  284. }
  285. if (a(s[v.currentSlide]).is("img")) {
  286. v.currentImage = a(s[v.currentSlide])
  287. } else {
  288. v.currentImage = a(s[v.currentSlide]).find("img:first")
  289. }
  290. if (t.controlNav) {
  291. a(".nivo-controlNav a", r).removeClass("active");
  292. a(".nivo-controlNav a:eq(" + v.currentSlide + ")", r).addClass("active")
  293. }
  294. h(t);
  295. a(".nivo-slice", r).remove();
  296. a(".nivo-box", r).remove();
  297. var w = t.effect;
  298. if (t.effect == "random") {
  299. var x = new Array("sliceDownRight", "sliceDownLeft", "sliceUpRight", "sliceUpLeft", "sliceUpDown", "sliceUpDownLeft", "fold", "fade", "boxRandom", "boxRain", "boxRainReverse", "boxRainGrow", "boxRainGrowReverse");
  300. w = x[Math.floor(Math.random() * (x.length + 1))];
  301. if (w == undefined) {
  302. w = "fade"
  303. }
  304. }
  305. if (t.effect.indexOf(",") != -1) {
  306. var x = t.effect.split(",");
  307. w = x[Math.floor(Math.random() * x.length)];
  308. if (w == undefined) {
  309. w = "fade"
  310. }
  311. }
  312. if (v.currentImage.attr("data-transition")) {
  313. w = v.currentImage.attr("data-transition")
  314. }
  315. v.running = true;
  316. if (w == "sliceDown" || w == "sliceDownRight" || w == "sliceDownLeft") {
  317. n(r, t, v);
  318. var y = 0;
  319. var z = 0;
  320. var A = a(".nivo-slice", r);
  321. if (w == "sliceDownLeft") {
  322. A = a(".nivo-slice", r)._reverse()
  323. }
  324. A.each(function () {
  325. var H = a(this);
  326. H.css({
  327. top: "0px"
  328. });
  329. if (z == t.slices - 1) {
  330. setTimeout(function () {
  331. H.animate({
  332. height: "100%",
  333. opacity: "1.0"
  334. }, t.animSpeed, "", function () {
  335. r.trigger("nivo:animFinished")
  336. })
  337. }, 100 + y)
  338. } else {
  339. setTimeout(function () {
  340. H.animate({
  341. height: "100%",
  342. opacity: "1.0"
  343. }, t.animSpeed)
  344. }, 100 + y)
  345. }
  346. y += 50;
  347. z++
  348. })
  349. } else {
  350. if (w == "sliceUp" || w == "sliceUpRight" || w == "sliceUpLeft") {
  351. n(r, t, v);
  352. var y = 0;
  353. var z = 0;
  354. var A = a(".nivo-slice", r);
  355. if (w == "sliceUpLeft") {
  356. A = a(".nivo-slice", r)._reverse()
  357. }
  358. A.each(function () {
  359. var H = a(this);
  360. H.css({
  361. bottom: "0px"
  362. });
  363. if (z == t.slices - 1) {
  364. setTimeout(function () {
  365. H.animate({
  366. height: "100%",
  367. opacity: "1.0"
  368. }, t.animSpeed, "", function () {
  369. r.trigger("nivo:animFinished")
  370. })
  371. }, 100 + y)
  372. } else {
  373. setTimeout(function () {
  374. H.animate({
  375. height: "100%",
  376. opacity: "1.0"
  377. }, t.animSpeed)
  378. }, 100 + y)
  379. }
  380. y += 50;
  381. z++
  382. })
  383. } else {
  384. if (w == "sliceUpDown" || w == "sliceUpDownRight" || w == "sliceUpDownLeft") {
  385. n(r, t, v);
  386. var y = 0;
  387. var z = 0;
  388. var B = 0;
  389. var A = a(".nivo-slice", r);
  390. if (w == "sliceUpDownLeft") {
  391. A = a(".nivo-slice", r)._reverse()
  392. }
  393. A.each(function () {
  394. var H = a(this);
  395. if (z == 0) {
  396. H.css("top", "0px");
  397. z++
  398. } else {
  399. H.css("bottom", "0px");
  400. z = 0
  401. }
  402. if (B == t.slices - 1) {
  403. setTimeout(function () {
  404. H.animate({
  405. height: "100%",
  406. opacity: "1.0"
  407. }, t.animSpeed, "", function () {
  408. r.trigger("nivo:animFinished")
  409. })
  410. }, 100 + y)
  411. } else {
  412. setTimeout(function () {
  413. H.animate({
  414. height: "100%",
  415. opacity: "1.0"
  416. }, t.animSpeed)
  417. }, 100 + y)
  418. }
  419. y += 50;
  420. B++
  421. })
  422. } else {
  423. if (w == "fold") {
  424. n(r, t, v);
  425. var y = 0;
  426. var z = 0;
  427. a(".nivo-slice", r).each(function () {
  428. var I = a(this);
  429. var H = I.width();
  430. I.css({
  431. top: "0px",
  432. height: "100%",
  433. width: "0px"
  434. });
  435. if (z == t.slices - 1) {
  436. setTimeout(function () {
  437. I.animate({
  438. width: H,
  439. opacity: "1.0"
  440. }, t.animSpeed, "", function () {
  441. r.trigger("nivo:animFinished")
  442. })
  443. }, 100 + y)
  444. } else {
  445. setTimeout(function () {
  446. I.animate({
  447. width: H,
  448. opacity: "1.0"
  449. }, t.animSpeed)
  450. }, 100 + y)
  451. }
  452. y += 50;
  453. z++
  454. })
  455. } else {
  456. if (w == "fade") {
  457. n(r, t, v);
  458. var C = a(".nivo-slice:first", r);
  459. C.css({
  460. height: "100%",
  461. width: r.width() + "px"
  462. });
  463. C.animate({
  464. opacity: "1.0"
  465. }, t.animSpeed * 2, "", function () {
  466. r.trigger("nivo:animFinished")
  467. })
  468. } else {
  469. if (w == "slideInRight") {
  470. n(r, t, v);
  471. var C = a(".nivo-slice:first", r);
  472. C.css({
  473. height: "100%",
  474. width: "0px",
  475. opacity: "1"
  476. });
  477. C.animate({
  478. width: r.width() + "px"
  479. }, t.animSpeed * 2, "", function () {
  480. r.trigger("nivo:animFinished")
  481. })
  482. } else {
  483. if (w == "slideInLeft") {
  484. n(r, t, v);
  485. var C = a(".nivo-slice:first", r);
  486. C.css({
  487. height: "100%",
  488. width: "0px",
  489. opacity: "1",
  490. left: "",
  491. right: "0px"
  492. });
  493. C.animate({
  494. width: r.width() + "px"
  495. }, t.animSpeed * 2, "", function () {
  496. C.css({
  497. left: "0px",
  498. right: ""
  499. });
  500. r.trigger("nivo:animFinished")
  501. })
  502. } else {
  503. if (w == "boxRandom") {
  504. o(r, t, v);
  505. var D = t.boxCols * t.boxRows;
  506. var z = 0;
  507. var y = 0;
  508. var E = c(a(".nivo-box", r));
  509. E.each(function () {
  510. var H = a(this);
  511. if (z == D - 1) {
  512. setTimeout(function () {
  513. H.animate({
  514. opacity: "1"
  515. }, t.animSpeed, "", function () {
  516. r.trigger("nivo:animFinished")
  517. })
  518. }, 100 + y)
  519. } else {
  520. setTimeout(function () {
  521. H.animate({
  522. opacity: "1"
  523. }, t.animSpeed)
  524. }, 100 + y)
  525. }
  526. y += 20;
  527. z++
  528. })
  529. } else {
  530. if (w == "boxRain" || w == "boxRainReverse" || w == "boxRainGrow" || w == "boxRainGrowReverse") {
  531. o(r, t, v);
  532. var D = t.boxCols * t.boxRows;
  533. var z = 0;
  534. var y = 0;
  535. var F = 0;
  536. var W = 0;
  537. var X = new Array;
  538. X[F] = new Array;
  539. var E = a(".nivo-box", r);
  540. if (w == "boxRainReverse" || w == "boxRainGrowReverse") {
  541. E = a(".nivo-box", r)._reverse()
  542. }
  543. E.each(function () {
  544. X[F][W] = a(this);
  545. W++;
  546. if (W == t.boxCols) {
  547. F++;
  548. W = 0;
  549. X[F] = new Array
  550. }
  551. });
  552. for (var Y = 0; Y < t.boxCols * 2; Y++) {
  553. var Z = Y;
  554. for (var aa = 0; aa < t.boxRows; aa++) {
  555. if (Z >= 0 && Z < t.boxCols) {
  556. (function (L, N, O, I, K) {
  557. var M = a(X[L][N]);
  558. var J = M.width();
  559. var H = M.height();
  560. if (w == "boxRainGrow" || w == "boxRainGrowReverse") {
  561. M.width(0).height(0)
  562. }
  563. if (I == K - 1) {
  564. setTimeout(function () {
  565. M.animate({
  566. opacity: "1",
  567. width: J,
  568. height: H
  569. }, t.animSpeed / 1.3, "", function () {
  570. r.trigger("nivo:animFinished")
  571. })
  572. }, 100 + O)
  573. } else {
  574. setTimeout(function () {
  575. M.animate({
  576. opacity: "1",
  577. width: J,
  578. height: H
  579. }, t.animSpeed / 1.3)
  580. }, 100 + O)
  581. }
  582. })(aa, Z, y, z, D);
  583. z++
  584. }
  585. Z--
  586. }
  587. y += 100
  588. }
  589. }
  590. }
  591. }
  592. }
  593. }
  594. }
  595. }
  596. }
  597. }
  598. };
  599. var c = function (t) {
  600. for (var u, r, s = t.length; s; u = parseInt(Math.random() * s), r = t[--s], t[s] = t[u], t[u] = r) {}
  601. return t
  602. };
  603. var j = function (r) {
  604. if (this.console && typeof console.log != "undefined") {
  605. console.log(r)
  606. }
  607. };
  608. this.stop = function () {
  609. if (!a(p).data("nivo:vars").stop) {
  610. a(p).data("nivo:vars").stop = true;
  611. j("Stop Slider")
  612. }
  613. };
  614. this.start = function () {
  615. if (a(p).data("nivo:vars").stop) {
  616. a(p).data("nivo:vars").stop = false;
  617. j("Start Slider")
  618. }
  619. };
  620. d.afterLoad.call(this);
  621. return this
  622. };
  623. a.fn.nivoSlider = function (c) {
  624. return this.each(function (e, f) {
  625. var g = a(this);
  626. if (g.data("nivoslider")) {
  627. return g.data("nivoslider")
  628. }
  629. var d = new b(this, c);
  630. g.data("nivoslider", d)
  631. })
  632. };
  633. a.fn.nivoSlider.defaults = {
  634. effect: "random",
  635. slices: 15,
  636. boxCols: 8,
  637. boxRows: 4,
  638. animSpeed: 500,
  639. pauseTime: 3000,
  640. startSlide: 0,
  641. directionNav: true,
  642. directionNavHide: true,
  643. controlNav: true,
  644. controlNavThumbs: false,
  645. controlNavThumbsFromRel: false,
  646. controlNavThumbsSearch: ".jpg",
  647. controlNavThumbsReplace: "_thumb.jpg",
  648. keyboardNav: true,
  649. pauseOnHover: true,
  650. manualAdvance: false,
  651. captionOpacity: 0.8,
  652. prevText: "Prev",
  653. nextText: "Next",
  654. randomStart: false,
  655. beforeChange: function () {},
  656. afterChange: function () {},
  657. slideshowEnd: function () {},
  658. lastSlide: function () {},
  659. afterLoad: function () {}
  660. };
  661. a.fn._reverse = [].reverse
  662. })(jQuery);
  663. </script><style>
  664. .campos {
  665. position: absolute;
  666. right: 30px;
  667. top: 20px;
  668. }
  669. a {
  670. color: rgb(0, 114, 198);
  671. text-decoration: none;
  672. }
  673. a:hover {
  674. color: rgb(51, 142, 209);
  675. }
  676. body{background: #f4f4f4 url(http://i.imgur.com/nn5xoY4.jpg); font-family: "Segoe UI", "Segoe UI Web Regular", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, "sans-serif";}
  677. .titulo {
  678. font-family: "Segoe UI Web Light","Segoe UI Light","Segoe UI Web Regular","Segoe UI","Segoe UI Symbol","Helvetica Neue",Arial!important;
  679. color: rgb(204, 35, 35);
  680. text-shadow: 2px 2px 2px #DDD;
  681. font-size: 40px;
  682. }
  683. input[type="text"],input[type="password"] {
  684. padding: 7px;
  685. outline: none;
  686. width: 302px;
  687. margin: 4px;
  688. font-family: "Segoe UI", "Segoe UI Web Regular", "Helvetica Neue", "BBAlpha Sans", "S60 Sans", Arial, "sans-serif";
  689. }
  690. input[type="submit"] {
  691. background: rgb(0, 0, 0);
  692. height: 2em; min-width: 6em; font-family: "Segoe UI Web Semibold", "Segoe UI Web Regular", "Segoe UI", "Helvetica Neue", Arial; font-size: 100%; color: rgb(33, 33, 33); padding: 3px 12px 5px; border: 0px;
  693. color: white;
  694. margin-left: 185px;
  695. margin-top: -253px;
  696. right: 100px;
  697. }
  698. .buttons {
  699. background: rgb(1, 1, 1);
  700. height: 25px;
  701. width: 850;
  702. -webkit-box-shadow: rgba(0,0,0,0.6) 0px 1px 6px;
  703. -moz-box-shadow: rgba(0,0,0,0.6) 0px 1px 6px;
  704. box-shadow: rgba(0,0,0,0.6) 0px 1px 6px;
  705. min-width: 75em;
  706. font-family: "Segoe UI Web Semibold", "Segoe UI Web Regular", "Segoe UI", "Helvetica Neue", Arial; font-size: 120%; color: rgb(33, 33, 33);
  707. border: 100px;
  708. border-top: 10px solid #000000;
  709. border-bottom: 6px solid #000000;
  710. margin-top: -32px;
  711. color: white;
  712. bottom: 3px;
  713. left: -120px;
  714. text-align: center;
  715. }
  716. .buttons li {
  717. display: inline-block;
  718. }
  719. .buttons li a {
  720. background: #000000;
  721. padding: 4px 10px;
  722. color: white;
  723. border-radius: 0 0 0 0;
  724. }
  725. .buttons li a:hover {
  726. background: #f4f4f4;
  727. color: #000000;
  728. }
  729. .content {
  730. position: absolute;
  731. top: 90px;
  732. left: 90px;
  733. margin: 15px;
  734. }
  735. .info div {
  736. width: 1700px;
  737. background: #ffffff;
  738. word-break: break-word;
  739. padding: 10px;
  740. color: white;
  741. margin-bottom: 30px;
  742. }
  743. .info h3 {
  744. font-family: "Segoe UI Web Light","Segoe UI Light","Segoe UI Web Regular","Segoe UI","Segoe UI Symbol","Helvetica Neue",Arial!important;
  745. }
  746. .nivoSlider {
  747. position: relative;
  748. }
  749.  
  750. .nivoSlider img {
  751. position: absolute;
  752. top: 0;
  753. left: 0;
  754. }
  755.  
  756. .nivoSlider a.nivo-imageLink {
  757. position: absolute;
  758. top: 0;
  759. left: 0;
  760. width: 100%;
  761. height: 100%;
  762. border: 0;
  763. padding: 0;
  764. margin: 0;
  765. z-index: 6;
  766. display: none;
  767. }
  768.  
  769. .nivo-slice {
  770. display: block;
  771. position: absolute;
  772. z-index: 5;
  773. height: 100%;
  774. }
  775.  
  776. .nivo-box {
  777. display: block;
  778. position: absolute;
  779. z-index: 5;
  780. }
  781.  
  782. .nivo-caption {
  783. position: absolute;
  784. left: 0;
  785. bottom: 0;
  786. background: #000;
  787. color: #fff;
  788. opacity: .8;
  789. width: 100%;
  790. z-index: 8;
  791. }
  792.  
  793. .nivo-caption p {
  794. padding: 5px;
  795. margin: 0;
  796. }
  797.  
  798. .nivo-caption a {
  799. display: inline!important;
  800. }
  801.  
  802. .nivo-html-caption {
  803. display: none;
  804. }
  805.  
  806. .nivo-directionNav a {
  807. position: absolute;
  808. top: 45%;
  809. z-index: 9;
  810. cursor: pointer;
  811. }
  812.  
  813. .nivo-prevNav {
  814. left: 0;
  815. }
  816.  
  817. .nivo-nextNav {
  818. right: 0;
  819. }
  820.  
  821. .nivo-controlNav a {
  822. position: relative;
  823. z-index: 9;
  824. cursor: pointer;
  825. }
  826.  
  827. .nivo-controlNav a.active {
  828. font-weight: bold;
  829. }
  830.  
  831. .theme-default .nivoSlider {
  832. position: relative;
  833. background: #fff url(https://i46.servimg.com/u/f46/15/66/68/20/loadin10.gif) no-repeat 50% 50%;
  834. margin-bottom: 50px;
  835. -webkit-box-shadow: 0 1px 5px 0 #4a4a4a;
  836. -moz-box-shadow: 0 1px 5px 0 #4a4a4a;
  837. box-shadow: 0 1px 5px 0 #4a4a4a;
  838. }
  839.  
  840. .theme-default .nivoSlider img {
  841. position: absolute;
  842. top: 0;
  843. left: 0;
  844. display: none;
  845. }
  846.  
  847. .theme-default .nivoSlider a {
  848. border: 0;
  849. display: block;
  850. }
  851.  
  852. .theme-default .nivo-controlNav {
  853. position: absolute;
  854. left: 50%;
  855. bottom: -42px;
  856. margin-left: -40px;
  857. }
  858.  
  859. .theme-default .nivo-controlNav a {
  860. display: block;
  861. width: 22px;
  862. height: 22px;
  863. background: url(https://i46.servimg.com/u/f46/15/66/68/20/bullet10.png) no-repeat;
  864. text-indent: -9999px;
  865. border: 0;
  866. margin-right: 3px;
  867. float: left;
  868. }
  869.  
  870. .theme-default .nivo-controlNav a.active {
  871. background-position: 0 -22px;
  872. }
  873.  
  874.  
  875. .theme-default a.nivo-nextNav {
  876. background-position: -30px 0;
  877. right: 15px;
  878. }
  879.  
  880. .theme-default a.nivo-prevNav {
  881. left: 15px;
  882. }
  883.  
  884. .theme-default .nivo-caption {
  885. font-family: Helvetica,Arial,sans-serif;
  886. }
  887.  
  888. .theme-default .nivo-caption a {
  889. color: #fff;
  890. border-bottom: 1px dotted #fff;
  891. }
  892.  
  893. .theme-default .nivo-caption a:hover {
  894. color: #fff;
  895. }
  896. </style> <div class="inner">
  897.  
  898. <div class="content">
  899.  
  900. <img src=" ">
  901.  
  902.  
  903. <div class="slider-wrapper theme-default">
  904.  
  905. <div class="ribbon">
  906.  
  907. </div>
  908.  
  909. <p>
  910. <script type="text/javascript">jQuery(window).load(function(){jQuery("#nivoslider-125").nivoSlider({effect:"random",slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:true,keyboardNav:true,pauseOnHover:true,manualAdvance:false});});</script>
  911. </p>
  912.  
  913. </div>
  914.  
  915. <p>
  916.  
  917. </p>
  918. <p>
  919.  
  920. </p>
  921.  
  922. </div>
  923.  
  924. </div>
  925.  
  926. <div class="campos">
  927.  
  928. <center>
  929. <script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  930. </center>
  931. <br>
  932. <form action="/login" method="post" class="frm-form" name="form_login">
  933.  
  934.  
  935.  
  936. <div class="buttons">
  937.  
  938. <li>
  939. <a href="http://forum-larp.forumeiros.com//forum">FÓRUM</a>
  940. </li>
  941.  
  942. <li>
  943. <a href="http://forum-larp.forumeiros.com/f1-noticias">NEWSWIRE</a>
  944. </li>
  945.  
  946. <li>
  947. <a href="http://forum-larp.forumeiros.com/crews">CREWS</a>
  948. </li>
  949.  
  950. <li>
  951. <a href="http://forum-larp.forumeiros.com/downloads">DOWNLOADS</a>
  952. </li>
  953.  
  954. <li>
  955. <a href="http://socialclubcarp.hol.es/">SOCIAL CLUB</a>
  956. </li>
  957.  
  958. <li>
  959. <a href="http://forum-larp.forumeiros.com/h5-">WAREHOUSE</a>
  960. </li>
  961.  
  962. <li>
  963. <a href="http://forum-larp.forumeiros.com/suporte">SUPORTE</a>
  964. </li>
  965.  
  966. <li>
  967. <a href="/register">JUNTAR-SE AO SOCIAL CLUB</a>
  968. </li>
  969.  
  970. </div>
  971. <embed pluginspage="http://microsoft.com/Windows/MediaPlayer/download/default.asp" uimode="mini" align="absmiddle" loop="0" autostart="5" showstatusbar="1" type="application/x-mplayer2" height="1" showdisplay="no" width="1" showcontrols="1" src="http://cdn-redir.terra.com/sscdn/10f/8/a/f/7/Estilodimik-dj-ciclo-boy-mike-will-made-it-ft-wiz-khalifa-juicy-j-miley-cyrus-461845.mp3?">
  972.  
  973. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement