A Pen by erikpantzar 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
// Start google maps | |
// Gooogle 3.4 Api, | |
// | |
// By: Erik Pantzar Celebrationstudios | |
// | |
// Functions as follows: | |
// Start map - (in document bottom of list) | |
// On press button - get adress and paste map where it should be | |
var map; |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> |
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-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
50% { background-color: #ccffcc; } | |
100% { background-color: #ccffff; } } | |
@-moz-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
50% { background-color: #ccffcc; } | |
100% { background-color: #ccffff; } } | |
@-ms-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
50% { background-color: #ccffcc; } |
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
// Mixin to fix all prefixed versions to style placeholder :) | |
// source https://github.com/michaelsacca/Compass-Placeholder-Text-Mixin | |
@mixin input-placeholder { | |
&.placeholder { @content; } | |
&:-moz-placeholder { @content; } | |
&::-moz-placeholder { @content; } | |
&:-ms-input-placeholder { @content; } | |
&::-webkit-input-placeholder { @content; } | |
} |
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 () { | |
/* | |
The trigger: | |
have the attribute: data-toggle-target= CLASSNAME | |
Then you can toggle All you waNtz | |
Close button: | |
Set the data-close-target and the class of things you want to hide | |
*/ |
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
<div class="product-item"> | |
<img src="" class="product-item-image" alt="" /> | |
<h2 class="product-item-title"> PL01 Men’s Pullover </h2> | |
<div class="product-item-layer"> | |
<div class="product-item-excerpt"> | |
<p><strong>Produktkod:</strong> PW04</p> | |
<p>Modern passform<br> | |
Förstärkt nacksöm<br> | |
Snygga detaljer</p> |
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
<?php | |
$_template = 'retailerlist'; | |
$fields_content = new \CWP\FieldContainer($_template . "_settings", array( | |
'meta_box' => \CWP\MetaBox::Get('page_settings', array( | |
'title' => 'Sidinställningar', | |
'priority' => 'high', | |
'context' => 'side', | |
'none' => false, |
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($) { | |
var onPageUrl = window.location.href; | |
var domain = window.location.host; | |
// all links ending with .pdf | |
$('a[href$=".pdf"]').on('click', trackPDF); | |
// all links beginning with "http" (might be https) |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>FBuzzz</title> | |
</head> | |
<body> | |
<script type="text/javascript"> |
OlderNewer