View this code at http://livecoding.io/4179420
View simplegallery
This file contains 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'); |
View desktoponly.css
This file contains 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"; | |
} | |
} |
View raw2.html
This file contains 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=""> |
View raw_webeat.html
This file contains 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"> |
View gist:4049290
This file contains 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> |
View map theme
This file contains 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", |
View textbgmask.css
This file contains 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; |
View newboxmodel.css
This file contains 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; } |
View DRAW_WITH_YOUR_FACE_TOOLBAR.css
This file contains 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; | |
} | |
#tools { | |
list-style: none; | |
margin: 4px 0px 0px 10px; | |
padding: 0; |
NewerOlder