Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en-us">
- <head>
- <!---
- ╔═══╦═╗╔═╦═══╦╗──╔═══╦═╗╔═╦═══╦═╗─╔╦════╦═══╗
- ║╔═╗║║╚╝║║╔═╗║║──║╔═╗║║╚╝║║╔══╣║╚╗║║╔╗╔╗║╔══╝
- ║║─║║╔╗╔╗║╚═╝║║──║║─║║╔╗╔╗║╚══╣╔╗╚╝╠╝║║╚╣╚══╗
- ║╚═╝║║║║║║╔══╣║─╔╣╚═╝║║║║║║╔══╣║╚╗║║─║║─║╔══╝
- ║╔═╗║║║║║║║──║╚═╝║╔═╗║║║║║║╚══╣║─║║║─║║─║╚══╗
- ╚╝─╚╩╝╚╝╚╩╝──╚═══╩╝─╚╩╝╚╝╚╩═══╩╝─╚═╝─╚╝─╚═══╝
- PAGE; CREATED BY CAROLAINE VIEIRA
- **** DONT REMOVE THE CREDITS ***
- amplamente.tumblr.com
- --->
- <title>Navigation</title>
- <meta charset="utf-8">
- <link rel="shortcut icon" href="{Favicon}">
- <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic,700|Arsenal:400,400italic,700|Open+Sans:400,400italic,700|Roboto:400,400italic,700|Arima+Madurai:400,400italic,700|Montserrat:400,400italic,700|Abril+Fatface:400,400italic,700|Playfair+Display:400,400italic,700|Raleway:400,400italic,700|Roboto:400,400italic,700" rel="stylesheet" type="text/css">
- <!------- filter scripts -------->
- <script src="http://static.tumblr.com/fuu6t9w/kh8ml0pl9/jquery-1.7.1.min.js"></script>
- <script src="http://static.tumblr.com/fuu6t9w/eubml0pm0/jquery.isotope.min.js"></script>
- <script>
- $(function(){
- var $container = $('#container');
- $container.isotope({
- itemSelector : '.story'
- });
- var $optionSets = $('#sort .option-set'),
- $optionLinks = $optionSets.find('a');
- $optionLinks.click(function(){
- var $this = $(this);
- // don't proceed if already selected
- if ( $this.hasClass('selected') ) {
- return false;
- }
- var $optionSet = $this.parents('.option-set');
- $optionSet.find('.selected').removeClass('selected');
- $this.addClass('selected');
- // make option object dynamically, i.e. { filter: '.my-filter-class' }
- var options = {},
- key = $optionSet.attr('data-option-key'),
- value = $this.attr('data-option-filter');
- // parse 'false' as false boolean
- value = value === 'false' ? false : value;
- options[ key ] = value;
- if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
- // changes in layout modes need extra logic
- changeLayoutMode( $this, options )
- } else {
- // otherwise, apply new options
- $container.isotope( options );
- }
- return false;
- });
- });
- </script>
- <style type="text/css">
- body {
- font-family:Open Sans;
- font-size:15px;
- background:#f9f9f9 url("http://i.imgur.com/nY6OybC.png");
- margin:0;
- }
- a {
- color:#888;
- text-decoration:none;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- a:hover {
- color:#000;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- a:focus {
- outline:1px dotted #ff9999;
- }
- i, italic, b, strong {
- color:#c49799;
- }
- ::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- }
- ::-webkit-scrollbar-thumb { background:#c49799; }
- ::-webkit-scrollbar-track { background:rgba(255,255,255,0.0); }
- #lista {
- width:250px;
- background:#fff;
- border:1px solid #f0f0f0;
- display:inline-block;
- vertical-align:top;
- text-align:left;
- margin:0 30px 30px 0;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- #lista:hover #lista_info img {
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- border-radius:2px;
- }
- #lista ul {
- margin:0 0 0 -40px;
- }
- #lista ul li {
- list-style:none;
- display:block;
- border-bottom:1px solid #f1f1f1;
- }
- #lista ul li a {
- display:inline-block;
- width:calc(100% - 20px);
- padding:8px 10px;
- font-size:13px;
- text-transform:lowercase;
- }
- #lista ul li a:hover {
- background:#c49799;
- color:#fff;
- letter-spacing:2px;
- }
- #lista #lista_info {
- padding:10px 10px 15px 10px;
- border-bottom:1px solid #f1f1f1;
- background:#fcfcfc;
- }
- #lista #lista_info img {
- width:43px;
- height:43px;
- border-radius:100%;
- padding:4px;
- border:1px solid #f1f1f1;
- background:#fff;
- float:left;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- #lista #lista_info h3 {
- margin:5px 0 0 58px;
- font-size:17px;
- font-weight:500;
- color:#c49799;
- font-family:Playfair DIsplay;
- font-style:italic;
- }
- #lista #lista_info sub {
- display:block;
- margin:0 0 0 58px;
- color:#777;
- font-size:13px;
- }
- #lista #lista_info_alt {
- padding:10px 10px 15px 10px;
- border-bottom:1px solid #f1f1f1;
- background:#c49799;
- }
- #lista #lista_info_alt img {
- width:50px;
- height:50px;
- border-radius:100% 100% 0 100%;
- -webkit-box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
- box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
- float:left;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- #lista #lista_info_alt h3 {
- margin:5px 0 0 59px;
- font-size:17px;
- font-weight:500;
- color:#fff;
- font-family:Playfair DIsplay;
- text-shadow:1px 0px rgba(0,0,0,0.2);
- font-style:italic;
- }
- #lista #lista_info_alt sub {
- display:block;
- margin:0 0 0 59px;
- color:rgba(0,0,0,0.2);
- font-weight:600;
- font-size:13px;
- }
- #lista p.description {
- font-size:12.5px;
- text-align:justify;
- padding:0 15px 10px 15px;
- color:#999;
- }
- #lista #icons {
- padding:13px 10px 4px 10px;
- text-align:center;
- margin-left:2px;
- }
- #lista #icons img {
- margin:0 6px 6px 0;
- width:32px;
- height:32px;
- border-radius:2px;
- display:inline-block;
- float:left;
- vertical-align:top;
- }
- #lista #icons img:hover {
- opacity:0.6;
- cursor:help;
- }
- #lista #icons img:nth-child(1) {
- width:69px;
- height:69px;
- }
- #lista #icons img:nth-child(16) {
- width:69px;
- height:69px;
- margin-bottom:7px;
- float:right;
- }
- #lista #icons img:nth-child(31) {
- width:69px;
- height:69px;
- margin-bottom:7px;
- float:left;
- }
- .clearfotos {
- clear:both;
- height:1px;
- width:100%;
- }
- .clearfix {
- text-align:center;
- }
- #container {
- text-align:center;
- max-width:1130px;
- margin:50px auto 50px auto;
- min-height:70vh;
- }
- header {
- top:0;
- left:0;
- width:100%;
- background:#222;
- padding:0px;
- }
- h1.title {
- font-family:Playfair Display;
- margin:0;
- color:#fff;
- font-style:italic;
- font-weight:400;
- font-size:25px;
- text-align:center;
- padding:20px 0 15px 0;
- }
- header p.description {
- color:#999;
- max-width:600px;
- text-align:center;
- margin:0 auto 25px auto;
- font-size:14px;
- font-style:italic;
- }
- header #sort ul {
- margin:0;
- text-align:center;
- border-top:1px solid #303030;
- }
- header #sort ul li {
- list-style:none;
- display:inline-block;
- text-transform:uppercase;
- font-weight:600;
- font-size:13px;
- }
- header #sort ul li a {
- color:#fff;
- display:inline-block;
- padding:20px 10px;
- position:relative;
- }
- header #sort ul li a {
- outline:none;
- }
- header #sort ul li a:after {
- content:"";
- position:absolute;
- border-radius:100%;
- background:#c49799;
- width:7px;
- height:7px;
- top:-14px;
- left:50%;
- -moz-transform: translateX(-50%);
- -webkit-transform: translateX(-50%);
- -o-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- opacity:0;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- header #sort ul li:hover a:after {
- opacity:1;
- top:-4px;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- header #sort ul li a.selected:after {
- opacity:1;
- top:-4px;
- }
- header #sort ul li a.selected {
- color:#c49799;
- }
- header #sort ul li a:hover {
- color:#c49799;
- }
- footer {
- background:#222;
- padding:20px 0;
- text-align:center;
- font-weight:600;
- font-size:13px;
- letter-spacing:2px;
- text-transform:uppercase;
- color:#fff;
- }
- footer a {
- color:#c49799;
- }
- /***
- >> INFORMAÇÕES - INFORMATIONS <<
- >> A COR DE REALCE É #c49799.
- >> A FONTE DOS TÍTULOS É Playfair Display, E A DO CORPO Open Sans
- >> THE ACCENT COLOR IS #c49799.
- >> FONT TITLE IS Playfair Display, AND BODY FONT IS Open Sans.
- **/
- </style>
- </head>
- <body>
- <header>
- <h1 class="title">
- General Navigation
- </h1>
- <p class="description">
- L'avantage de le mettre en latin est que l'opérateur sait au premier coup d'oeil que la page contenant ces lignes n'est pas valide, et surtout l'attention du client n'est pas dérangée par le contenu, il demeure concentré seulement sur l'aspect graphique.
- </p>
- <div id="sort">
- <ul id="filters" class="option-set clearfix" data-option-key="filter">
- <li><a href="#filter" class="selected" data-option-filter=".story">All</a></li>
- <li><a href="#filter" data-option-filter=".romance">Romance</a></li>
- <li><a href="#filter" data-option-filter=".girls">girls </a></li>
- <li><a href="#filter" data-option-filter=".boys">boys</a></li>
- <li><a href="#filter" data-option-filter=".icons">icons</a></li>
- <li><a href="#filter" data-option-filter=".links">links</a></li>
- </ul>
- </div>
- </header>
- <div id="container" class="clearfix">
- <div id="lista" class="story about">
- <div id="lista_info_alt">
- <img src="http://68.media.tumblr.com/avatar_fc3a55d4458b_128.png" >
- <h3>Carolaine Vieira</h3>
- <sub>1999, paulista</sub>
- </div>
- <p class="description">
- <b>L</b>'avantage de le mettre en latin est que l'opérateur sait au premier coup d'oeil que la page contenant <i>ces lignes</i> n'est pas valide, et surtout l'attention du client n'est pas dérangée par le contenu, il demeure concentré seulement sur l'aspect graphique.
- </p>
- </div>
- <div id="lista" class="story romance girls links">
- <div id="lista_info">
- <img src="http://68.media.tumblr.com/704d84ca604b118fdac11bea7a2075cb/tumblr_inline_ojojp9exOE1uzqnq1_250.png" >
- <h3>Très bien</h3>
- <sub>chic p muah</sub>
- </div>
- <ul>
- <li><a href="#">des premières</a> </li>
- <li><a href="#">la souffrance pour</a> </li>
- <li><a href="#">Expert en utilisabilité</a> </li>
- <li><a href="#">donc l'utilisation</a> </li>
- <li><a href="#">l'espace nécessaire</a> </li>
- <li><a href="#">les mots fictifs</a> </li>
- <li><a href="#">leur travail</a> </li>
- </ul>
- </div>
- <div id="lista" class="story icons girls">
- <div id="lista_info">
- <img src="http://static.tumblr.com/wdl6pky/ANboidxjn/hgjhjkhk.png" >
- <h3>la poesie</h3>
- <sub>est dan las rues</sub>
- </div>
- <div id="icons">
- <img src="http://static.tumblr.com/wdl6pky/x7Yoidxv7/thfgh.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/NP5oidy2z/wqre.png">
- <img src="http://static.tumblr.com/wdl6pky/w0noidxrp/rttf.png">
- <img src="http://static.tumblr.com/wdl6pky/9ahoidxrr/rttfyh.png">
- <img src="http://static.tumblr.com/wdl6pky/DpAoidx8y/fgjhgj.png">
- <img src="http://static.tumblr.com/wdl6pky/Hrcoidwv1/dcfsdfsdf.png">
- <img src="http://static.tumblr.com/wdl6pky/hb4oidxxm/thytfghn.png">
- <img src="http://40.media.tumblr.com/c9ed246f8353d2312a6cde9d6277f7f7/tumblr_njhe1zx9Ip1s24di3o2_400.png">
- <img src="http://static.tumblr.com/wdl6pky/9ahoidxrr/rttfyh.png">
- <img src="http://static.tumblr.com/wdl6pky/DpAoidx8y/fgjhgj.png">
- <img src="http://static.tumblr.com/wdl6pky/Hrcoidwv1/dcfsdfsdf.png">
- <img src="http://static.tumblr.com/wdl6pky/hb4oidxxm/thytfghn.png">
- <img src="http://40.media.tumblr.com/c9ed246f8353d2312a6cde9d6277f7f7/tumblr_njhe1zx9Ip1s24di3o2_400.png">
- <img src="http://40.media.tumblr.com/0f49c5cec326a10c23e81ea5abc1d98b/tumblr_njhe1zx9Ip1s24di3o4_400.png">
- <img src="http://static.tumblr.com/wdl6pky/Ahuoidxt8/sdsfd.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://40.media.tumblr.com/0f49c5cec326a10c23e81ea5abc1d98b/tumblr_njhe1zx9Ip1s24di3o4_400.png">
- <img src="http://static.tumblr.com/wdl6pky/Ahuoidxt8/sdsfd.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/x7Yoidxv7/thfgh.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/NP5oidy2z/wqre.png">
- <img src="http://static.tumblr.com/wdl6pky/w0noidxrp/rttf.png">
- <img src="http://static.tumblr.com/wdl6pky/Ahuoidxt8/sdsfd.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://40.media.tumblr.com/0f49c5cec326a10c23e81ea5abc1d98b/tumblr_njhe1zx9Ip1s24di3o4_400.png">
- <img src="http://static.tumblr.com/wdl6pky/Ahuoidxt8/sdsfd.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/x7Yoidxv7/thfgh.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/NP5oidy2z/wqre.png">
- <img src="http://static.tumblr.com/wdl6pky/w0noidxrp/rttf.png">
- <img src="http://static.tumblr.com/wdl6pky/Ahuoidxt8/sdsfd.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/x7Yoidxv7/thfgh.png">
- <img src="http://static.tumblr.com/wdl6pky/Y4soidxt5/sdgfg.png">
- <img src="http://static.tumblr.com/wdl6pky/NP5oidy2z/wqre.png">
- <img src="http://static.tumblr.com/wdl6pky/w0noidxrp/rttf.png">
- <div class="clearfotos">
- <!-- don't delete -->
- </div>
- </div>
- </div>
- </div> <!-- fim de #container -->
- <footer>
- <!-- Please don't remove my credit -->
- ♡ Page Created by <a href="http://www.ttamplamente.tumblr.com/">Amplamente</a>
- <!-- Please don't remove my credit -->
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement