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
$default_rounded_amount: 5px | |
// Round corner at position by amount. | |
@mixin round-corner($position, $amount: $default_rounded_amount) | |
border-#{$position}-radius: $amount | |
-webkit-border-#{$position}-radius: $amount | |
@mixin round-corner-mozilla($position, $amount: $default_rounded_amount) | |
-moz-border-radius-#{$position}: $amount | |
// Round left corners by amount |
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
<!DOCTYPE html> | |
<html ng-app="app"> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<br /> | |
<br /> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.upload-button { | |
height : 30px; | |
overflow : hidden; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="[add your bin description]" /> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
/* | |
Fancy rotating button using CSS3 animations | |
*/ |
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
// watch out for google api cut off | |
class googleMaps { | |
private $latlong = ""; | |
private $json = ""; | |
private $log = array(); | |
private $break = false; | |
public function __construct($latlong) { |
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
<?php | |
class curl_get_image{ | |
private $image_name = ""; | |
private $data = ""; | |
private $dir = ""; | |
private $details = array(); | |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Xml; | |
namespace distance | |
{ | |
class distance | |
{ |
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
function gen_secure_id($size){ | |
$char = range("a", "z"); | |
$numb = range(1, 9); | |
$merge = array_merge($char, $numb); | |
$string = ""; | |
for($x=0; $x != $size; $x++){ | |
$n = ""; |
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
@if ($paginator->getLastPage() > 1) | |
<ul class="pagination"> | |
<li> | |
<a href="{{ $paginator->getUrl(1) }}" class="pagination__item-{{ ($paginator->getCurrentPage() == 1) ? ' pagination__disabled' : '' }} btn pagination__option"><i class="fa fa-arrow-circle-left"></i> Previous</a> | |
</li> | |
@for ($i = 1; $i <= $paginator->getLastPage(); $i++) | |
<li> | |
<a href="{{ $paginator->getUrl($i) }}" class="pagination__item-{{ ($paginator->getCurrentPage() == $i) ? ' pagination__active' : '' }} btn pagination__option">{{ $i }}</a> | |
</li> |
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
.btn { | |
background : none; | |
border : 0; | |
border-radius : 0px; | |
} | |
.btn--menu-trigger { | |
@extend .btn; | |
border: 2px solid white; | |
padding: 6px; |
OlderNewer