Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>TWILIGHT VISIONS</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <style type="text/css">
- body {
- font-family:arial;
- font-size:9px;
- background:#D9D5CD url("http://i.imgur.com/dmhoUAR.png");
- }
- a {text-decoration:none;
- color:#cbcbcb;}
- hr { border: #E5E5E5 1px dashed;}
- #charlist {
- text-align: center;
- font-family: 'Economica', sans-serif;
- font-size: 65px;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: normal;
- margin: 0px auto;
- margin-bottom: -18px;
- position: relative;
- color: #6D6B6B;
- line-height: 13px;
- width: 655px;
- padding-top: 32px;
- }
- .navigation{
- padding: 3px;
- background-color: #000;
- color: #fff;
- font-family: arial;
- font-size: 10px;
- width: 86px;
- letter-spacing: 1px;
- }
- #all {
- margin: 0 auto;
- margin-top: 20px;
- }
- #family {
- width: 631px;
- height: 304px;
- background: #ECE8E0;
- padding: 12px;
- overflow: auto;
- }
- #family img {
- opacity: .7;
- -webkit-transition: all 0.5s ease-in-out;
- padding: 2px;
- }
- #family img:hover {opacity: 1;}
- #portrait {
- width: 100px;
- margin: 0px auto;
- margin-top: -17px;
- overflow: hidden;
- margin-bottom: 21px;
- }
- #portrait img {
- width: 100px;
- }
- .title {
- color:#6cc4db;
- font-weight:800;
- margin-bottom:3px;
- border-left:11px solid;
- padding-left:5px;
- letter-spacing:1px;
- text-transform: uppercase;
- }
- #fade {
- display: none;
- background: #D9D5CD;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none;
- float: left;
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 99999;
- height: 400px;
- font: 12px consolas;
- color: #abad9e;
- background: #bbb url(http://i.imgur.com/BydyKYO.png);
- padding: 20px;
- }
- img.btn_close {
- float: right;
- width: 22px;
- margin: -15px -22px;
- }
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- #content {
- overflow: auto;
- position: absolute;
- height: 309px;
- left: 27px;
- top: 71px;
- width: 517px;
- }
- #menu {
- margin-top: 20px;
- font-family: trebuchet ms;
- font-size: 8px;
- letter-spacing: 7px;
- }
- #menu a {
- padding : 12px;
- color : #4E4E4E;
- }
- .charaimg {
- display: inline-block;
- float: left;
- width: 300px;
- height: 200px;
- margin-right: 5px;
- }
- .kolom1 {
- display: inline-block;
- width: 235px;
- height: 192px;
- float: right;
- border: 1px solid #bbb;
- overflow: auto;
- padding: 4px;
- color: #000;
- }
- .kolom2 {
- display: block;
- width: 100%;
- float: right;
- margin-top: 3px;
- overflow: auto;
- height: 200px;
- color: #464646;
- text-align: justify;
- font: 11px Arial;
- line-height: 1.5;
- }
- .nama {
- display: block;
- width: 100%;
- background: #CCC;
- font-family: Economica;
- text-align: center;
- font-size: 22px;
- color: #2D2D2D;
- }
- </style>
- <link href="http://fonts.googleapis.com/css?family=Economica" rel="stylesheet" type="text/css">
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //When you click on a link with class of poplight and the href starts with a #
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- return false;
- });
- //Close Popups and Fade Layer
- $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- </head>
- <body>
- <div id="charlist">
- <div id="portrait">
- <img src="http://i.imgur.com/PmQ77OF.png">
- </div>
- <!-- Judul Di sini -->
- Twilight Vision
- <div id="menu">
- <!-- Menu di sini -->
- <a href="/"><span class="button">home</span></a>
- <a href="/ask"><span class="button">message</span></a>
- <a href="http://happyroleplaying.tumblr.com/"><span class="button">credits</span></a>
- </div></div>
- <!-- Start! Roleplay Charlist! -->
- <table id="all" cellspacing="0" cellpadding="0">
- <tbody><tr>
- <td>
- <div id="family">
- <!-- Gambar karakternya disini! -->
- <a href="#?w=550" rel="one" class="poplight"><img src="http://i.imgur.com/taeTTOi.jpg"></a>
- <a href="#?w=550" rel="two" class="poplight"><img src="http://i.imgur.com/taeTTOi.jpg"></a>
- <!--Kalau ingin menambahkan karakter cukup tambah di atas saja. -->
- </div>
- <!--Akhir Gambar Karakter-->
- </td>
- </tr>
- <!--Awal Deskripsi-->
- <div id="one" class="popup_block">
- <!-- gambar karakter di sini -->
- <div class="charaimg">
- <img src="https://placeholdit.imgix.net/~text?txtsize=28&txt=300%C3%97200&w=300&h=200">
- </div>
- <!-- Isi Kolom 1 -->
- <div class="kolom1">
- <div class="nama">Name Here</div> <!-- Isi nama karakter -->
- <b>Birthdate :</b>
- <br><b>Blood Type :</b>
- <br><b>Height / Weight :</b>
- <br><b>Zodiac :</b>
- <br><b>Physical Description :</b> <br>
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- </div>
- <!-- Isi Kolom 2 -->
- <div class="kolom2">
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- </div>
- </div>
- </div>
- <!--Akhir Deskripsi-->
- <!--Awal Deskripsi-->
- <div id="two" class="popup_block">
- <!-- gambar karakter di sini -->
- <div class="charaimg">
- <img src="https://placeholdit.imgix.net/~text?txtsize=28&txt=300%C3%97200&w=300&h=200">
- </div>
- <!-- Isi Kolom 1 -->
- <div class="kolom1">
- <div class="nama">Wowaka waka ee</div> <!-- Isi nama karakter -->
- <b>Birthdate :</b>
- <br><b>Blood Type :</b>
- <br><b>Height / Weight :</b>
- <br><b>Zodiac :</b>
- <br><b>Physical Description :</b> <br>
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- </div>
- <!-- Isi Kolom 2 -->
- <div class="kolom2">
- Lihat beda kan
- </div>
- </div>
- </div>
- <!--Akhir Deskripsi-->
- </tbody></table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment