View this code at http://livecoding.io/4179420
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$(".pic").on("click", function(e){ | |
e.preventDefault(); | |
$("#content").find('li').removeClass("opened"); | |
$(this).addClass("opened"); | |
}); | |
$(".next").on("click", function(e){ | |
e.preventDefault(); | |
var nextthing = $("#content li.opened").next('li'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) { | |
body{ | |
display:none; | |
} | |
html:after{ | |
content: "This site is only available on desktop computers"; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
<title> | |
{{#text.title}}{{text.title}}{{/text.title}}{{^text.title}} | |
{{title}} | |
{{/text.title}} {{#single_event}} - {{name}}{{/single_event}} - webe.at | |
</title> | |
<meta name="text:title" value=""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> | |
{{#text.title}}{{text.title}}{{/text.title}}{{^text.title}} | |
{{title}} | |
{{/text.title}} {{#single_event}} - {{name}}{{/single_event}} - webe.at | |
</title> | |
<meta name="text:title" value=""> | |
<meta name="text:sub_heading" value=""> | |
<meta name="color:headings" value="#000000"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> | |
{{#text.title}} | |
{{text.title}} | |
{{/text.title}} | |
{{^text.title}} | |
{{title}} | |
{{/text.title}} {{#single_event}} - {{name}}{{/single_event}} - webe.at</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
<script src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js"></script> | |
<script> | |
var events, webeatMapTheme = | |
[ | |
{ | |
"featureType": "poi", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.block { | |
display: table; | |
margin: 0; | |
padding: 0; | |
float: left; | |
height: 400px; | |
width:400px; | |
text-align: center; | |
vertical-align: middle; | |
background-size: cover; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul id="tools"> | |
<li class="trash"></li><br /> | |
<li class="small"></li><br /> | |
<li class="medium"></li><br /> | |
<li class="large"></li><br /> | |
<li class="black"></li><br /> | |
<li class="red"></li><br /> | |
<li class="orange"></li><br /> | |
<li class="yellow"></li><br /> | |
<li class="green"></li><br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } |
NewerOlder