Skip to content

Instantly share code, notes, and snippets.

View stephandewolf's full-sized avatar

Stephan de Wolf stephandewolf

  • Maerke - strategie, creatie en beleving
  • the Netherlands
View GitHub Profile
@stephandewolf
stephandewolf / html_signature_osx
Created November 13, 2020 12:27 — forked from katecooperuk/html_signature_osx
HTML email signature – Apple OSX Mail
<body>
<!-- insert Adobe Typekit link here -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet">
<style>
@media screen {
font-family:'interstate-condensed','Avenir Next Condensed','Arial Nova Cond Light','Open Sans Condensed','Arial Narrow',sans-serif;
font-style: normal;
font-weight:400;
a[x-apple-data-detectors] {
font-weight: inherit !important;
@stephandewolf
stephandewolf / html_signature_ios
Created November 13, 2020 12:27 — forked from katecooperuk/html_signature_ios
HTML email signature – Apple iOS Mail
<table id="lwsignature" cellspacing="0" cellpadding="0" border-spacing="0" style="margin:0;padding:0;font-family:'Avenir Next Condensed','Arial Nova Cond Light','Arial Narrow',sans-serif;mso-line-height-rule:exactly;line-height:20px;border-collapse:collapse;-webkit-text-size-adjust:none;">
<tbody>
<tr style="margin:0;padding:0;">
<td valign='top' style="width:60px;margin:0;padding:0;vertical-align:top;">
<a href='https://yourwebsite.com' title="Your Business Name" style="border:none;text-decoration:none;">
<img moz-do-not-send="true" src="https://via.placeholder.com/120x208.png?text=Your+Logo" alt="Your Business Name" width="60" height="104" style="border:none;width:60px;height:104px;display:block!important;">
</a>
</td>
<td valign="bottom" style="margin:0;padding:6px 0 0 10px;vertical-align:bottom;font-family:'Avenir Next Condensed','Arial Nova Cond Light','Open Sans Condensed','Arial Narrow',sans-serif;">
<p style="margin:0;padding:0;color:#000000;fo
@stephandewolf
stephandewolf / html_signature_outlook
Created November 13, 2020 12:27 — forked from katecooperuk/html_signature_outlook
HTML email signature – Outlook
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<!-- insert Adobe Typekit link here -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet">
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<meta name="format-detection" content="telephone=no">

Gradient shadow in pure CSS

alt text

HTML
<button>Let's Go !</button>
@stephandewolf
stephandewolf / registerblock-custom-icon-gutenberg.js
Created April 28, 2020 12:32 — forked from zgordon/registerblock-custom-icon-gutenberg.js
Example for how to create use a custom SVG icon for a block in Gutenberg
// Import __ from i18n internationalization library
const { __ } = wp.i18n;
// Import registerBlockType() from block building libary
const { registerBlockType } = wp.blocks;
// Import the element creator function (React abstraction layer)
const el = wp.element.createElement;
/**
* Example of a custom SVG path taken from fontastic
*/
@stephandewolf
stephandewolf / gist:d7abb8ff81bd800f107019cd06caf346
Created April 28, 2020 12:31 — forked from mannieschumpert/gist:9492274
QuickTip: Make an SVG Library for Your Custom Post Type Icons
<?php
// Create your SVG library function
// Put this at the bottom of your functions.php file,
// or out of the way wherever you like
function menu_icons($icon){
// Store your SVGs in an associative array
$svgs = array(
'microphone' => 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjY0cHgiIGhlaWdodD0iMTAwcHgiIHZpZXdCb3g9IjAgLTIwIDY0IDEyMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjQgMTAwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8Zz4NCgkJPHBhdGggZD0iTTYyLDM2LjIxNWgtM2MtMS4xLDAtMiwwLjktMiwyVjUyYzAsNi42ODYtNS4yNjYsMTgtMjUs