Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <!-----------
- EVENT PAGE by clumhood
- :> ------------>
- <title>EVENTS</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
- <link href='http://fonts.googleapis.com/css?family=Roboto:700,400' rel='stylesheet' type='text/css'>
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Roboto:700,400:latin' ] }
- };
- (function() {
- var wf = document.createElement('script');
- wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
- '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
- wf.type = 'text/javascript';
- wf.async = 'true';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(wf, s);
- })(); </script>
- <!------- 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(){
- <!------- 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>
- <!-----end filter scripts------>
- <!-----end filter scripts------>
- <style type="text/css">
- body {
- font-family:arial;
- font-size:12px;
- background:#f8f8f8; /**this is the color of the bg.*/
- }
- a {
- color:#676767; /**this is the color of the links.*/
- text-decoration:none;
- }
- ::-webkit-scrollbar {
- background-color: white;
- height:8px;
- width:5px
- }
- ::-webkit-scrollbar-thumb:vertical {
- background-color:black;
- height:50px
- }
- ::-webkit-scrollbar-thumb:horizontal {
- background-color:black;
- height:8px!important
- }
- .top {
- width:1594px;
- background:white; /**this is the color of the topbar background.*/
- text-align:left;
- padding-bottom:0px;
- margin-bottom:30px;
- margin-top:-9px;
- margin-left:-7px;
- }
- .top2 {
- width:1080px;
- background:white; /**this is the color of the filter titles topbar background.*/
- text-align:left;
- padding-bottom:0px;
- margin-bottom:20px;
- margin-top:10px;
- margin-left:-7px;
- }
- #sort {
- padding:10px;
- text-align:center;
- font-family:'roboto', sans-serif;
- font-size:15px;
- text-transform:uppercase;
- }
- #sort a {
- margin-left:30px;
- }
- #sort a:hover {
- color:black; /**this is the color of the filter links when you hover over them.*/
- }
- .title {
- float:left;
- padding:30px;
- padding-top:30px;
- font-family:'roboto', sans-serif;
- font-size:15px;
- text-transform:uppercase;
- font-weight:bold;
- }
- .links {
- width:1100px;
- text-align:center;
- padding:30px;
- }
- .links a {
- font-family:'roboto', sans-serif;
- font-size:15px;
- text-transform:uppercase;
- padding:30px;
- border-left:1px solid #eee;
- margin-left:-3px;
- }
- .links a:hover {
- background:black; /**this is the color of the background of the links when you hover over them.*/
- color:white; /**this is the color of the links when you hover over them.*/
- }
- .links a:last-child {
- border-right:1px solid #eee;
- }
- #container {
- width:1080px;
- margin-top:10px;
- }
- #content {
- margin:10px;
- overflow:hidden;
- width:250px;
- float:left;
- box-shadow:0px 3px 10px rgba(0,0,0,.15);
- text-align:left;
- line-height:150%;
- background:white; /**this is the color of the background of each event.*/
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #content img {
- float:left;
- margin-right:5px;
- padding:10px;
- width:100px;
- height:100px;
- }
- .desc {
- padding:10px;
- margin-top:10px;
- font-size:11px;
- }
- .tag {
- text-transform:uppercase;
- text-align:left;
- padding:5px;
- font-family:'roboto', sans-serif;
- margin-top:5px;
- }
- .tag a {
- background:black; /**this is the color of the tag background on each event.*/
- padding:5px 30px 5px 30px;
- color:white; /**this is the color of the tag link on each event.*/
- }
- .tag a:hover {
- background:pink; /**this is the color of the tag background on each event when you hover of it.*/
- color:white; /**this is the color of the tag link on each event when you hover over it.*/
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #content2 {
- margin:10px;
- overflow:hidden;
- width:250px;
- float:left;
- box-shadow:0px 3px 10px rgba(0,0,0,.15);
- text-align:left;
- line-height:150%;
- background:#f8f8f8; /**this is the color of the background of each past event.*/
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #content2 img {
- float:left;
- margin-right:5px;
- padding:10px;
- width:100px;
- width:100px;
- }
- </style>
- </head>
- <body>
- <!-- MAIN TOPBAR LINKS -->
- <div class="top">
- <div class="title"><i class="fa fa-diamond"></i> halseysource</div>
- <center><div class="links">
- <a href="/">Home</a>
- <a href="/ask">inbox</a>
- <a href="/">Link</a>
- <a href="/">Link</a>
- <a href="/">Link</a>
- <!-- DO NOT REMOVE THE CREDIT -->
- <a href="http://clumhood.tumblr.com/">credit</a>
- </div></center>
- </div>
- <!-- FILTER LINKS -->
- <center><div class="top2">
- <div id="sort">
- <ul id="filters" class="option-set clearfix" data-option-key="filter">
- <!-- CHOOSE A FILTER NAME FOR EACH TYPE OF EVENT. DONT TOUCH THE FIRST LINK .story THIS IS YOUR MAIN FILTER FOR EVERY EVENT. CHANGE THE NAME OF YOUR FILTER: EX .smt or .festival -->
- <a href="#filter" data-option-filter=".story">All</a>
- <a href="#filter" data-option-filter=".smt">Smoke + Mirrors</a>
- <a href="#filter" data-option-filter=".festival">Festivals</a>
- <a href="#filter" data-option-filter=".badlands">Badlands Tour</a>
- <a href="#filter" data-option-filter=".other">Others</a>
- <a href="#filter" data-option-filter=".past">Previous shows</a>
- </ul>
- </div>
- </div></center>
- <center><div id="container" class="clearfix">
- <!-- AFTER class="story tags" CHANGE TO THE ACCURATE TAG. DONT REMOVE story ITS YOUR MAIN FILTER FOR WHEN YOU CLICK ON All IN THE FILTER TOPBAR -->
- <div id="content" class="story smt">
- <!-- THIS IS YOUR EVENT IMAGE -->
- <img src="http://static.tumblr.com/zy3qjic/VR3ns9emo/2.png"/>
- <div class="desc">
- <b>JULY 30TH</b>
- <br>Vancouver, CA
- <br>Rogers Arena
- <div class="tag"><a href="/tagged/smt vancouver">Tag</a></div>
- </div>
- </div>
- <!-- FOR PAST EVENTS CHANGE <div id="content" to <div id="content2" -->
- <div id="content2" class="story smt past">
- <img src="http://static.tumblr.com/zy3qjic/VR3ns9emo/2.png"/>
- <div class="desc">
- <b>JULY 28TH</b>
- <br>Salt Lake City, UT
- <br>EnergySolutions Arena
- <div class="tag"><a href="/tagged/smt slt">Tag</a></div>
- </div>
- </div>
- </div></center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment