/* Double-sized Checkboxes */
input[type=checkbox]{
-ms-transform: scale(2); /* IE */
-moz-transform: scale(2); /* FF */
-webkit-transform: scale(2); /* Safari and Chrome */
-o-transform: scale(2); /* Opera */
padding: 10px;
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
| .platform-android4_1 { | |
| /*Any styles for android 4.1*/ | |
| } | |
| .platform-android4_3 { | |
| /*Any styles for android 4.3*/ | |
| } | |
| .platform-android4_4 { | |
| /*Any styles for android 4.4*/ |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title></title> | |
| <link rel="stylesheet" href=""> | |
| <script src="noframework.waypoints.min.js"></script> | |
| </head> | |
| <style> |
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
| /* | |
| THIS GIST IS OUT OF DATE AND NOT MONITORED | |
| PLEASE SEE https://github.com/leecrossley/cordova-plugin-shake-detection | |
| */ | |
| var shake = (function () { | |
| var shake = {}, | |
| watchId = null, | |
| options = { frequency: 300 }, | |
| previousAcceleration = { x: null, y: null, z: null }, |
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
| -webkit-filter:blur(10px); |
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
| function removeDuplicates(array) { | |
| var newArray = []; //create new array to store no duplicates | |
| var isDuplicated = false; //track duplicate indexes | |
| newArray.push(array[0]); //add first index to new array | |
| for (i=1; i <= array.length; i++) { //loop over entered array | |
| for (var x = newArray.length - 1; x >= 0; x--) { // loop over new array | |
| if (newArray[x] == array[i]){ //compare newArray to entered array to see if the current index value already exist in the array | |
| isDuplicated = true; //current array index has a duplicate value |
Forked from Wojtek Witkowski's Pen Like Animation — Jumpy Hearts.
A Pen by Denzil Doyle on CodePen.
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8' /> | |
| <title></title> | |
| <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
| <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.css' rel='stylesheet' /> | |
| <style> | |
| body { margin:0; padding:0; } |
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
| app.filter( 'domain', function () { | |
| return function ( input ) { | |
| var parser = document.createElement('a'); | |
| parser.href = input; | |
| return parser.hostname; | |
| }; | |
| }); |