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
/* From http://furbo.org/2015/07/09/i-left-my-system-fonts-in-san-francisco/ */ | |
* { font-family: -apple-system-font, HelveticaNeue, LucidaGrande; } | |
/* Dynamic Type feature */ | |
* { font-family: -apple-system-headline1, HelveticaNeue, LucidaGrande; } | |
* { font-family: -apple-system-headline2, HelveticaNeue, LucidaGrande; } | |
* { font-family: -apple-system-body, HelveticaNeue, LucidaGrande; } | |
* { font-family: -apple-system-subheadline1, HelveticaNeue, LucidaGrande; } | |
* { font-family: -apple-system-subheadline2, HelveticaNeue, LucidaGrande; } |
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
// @see http://www.quora.com/Web-Development/What-are-the-most-interesting-HTML-JS-DOM-CSS-hacks-that-most-web-developers-dont-know-about | |
// @see http://qr.ae/Khvbr | |
var s=document.createElement('style'); | |
s.textContent = "<style> * { background-color: rgba(255,0,0,.2) !important} * * { background-color: rgba(0,255,0,.2) !important} * * * { background-color: rgba(0,0,255,.2) !important} * * * * { background-color: rgba(255,0,255,.2) !important} * * * * * { background-color: rgba(0,255,255,.2) !important} * * * * * * { background-color: rgba(255,255,0,.2) !important}</style>"; | |
document.getElementsByTagName('head')[0].appendChild(s); |
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
<cffunction name="uploadToAmazonS3"> | |
<cfargument name="fileName" required="true" /> | |
<cfargument name="contentType" required="true" /> | |
<cfargument name="data" required="true" /> | |
<cfargument name="acl" default="public-read" /> | |
<cfargument name="storageClass" default="STANDARD" /> | |
<cfargument name="HTTPtimeout" default="300" /> | |
<cfargument name="bucket" default="#getProperty('EmailAttachmentS3Bucket')#" /> | |
<cfargument name="accessKeyId" default="#getProperty('EmailAttachmentS3AccessKeyId')#" /> | |
<cfargument name="secretKey" default="#getProperty('EmailAttachmentS3SecretKey')#" /> |