Skip to content

Instantly share code, notes, and snippets.

View sturobson's full-sized avatar
:atom:
coding things

Stuart Robson sturobson

:atom:
coding things
View GitHub Profile

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
.accordion {
.js & {
display: none;
}
.js .open + & {
display: block;
}
li {
border-top: 1px solid #e2e4e6;
&:first-child {
...
// test for font-face version to load via Data URI'd CSS
// Basically, load WOFF unless it's android's default browser, which needs TTF, or ie8-, which needs eot
var fonts = ns.files.css.fontsWOFF,
ua = win.navigator.userAgent;
// android webkit browser, non-chrome
if( ua.indexOf( "Android" ) > -1 && ua.indexOf( "like Gecko" ) > -1 && ua.indexOf( "Chrome" ) === -1 ){
fonts = ns.files.css.fontsTTF;
}
// Note: This file is dependent on Sass and Compass.
// Sass = http://sass-lang.com
// Compass = http://compass-style.org
@import "compass/css3"
// `Form Element Reset.
//----------------------------------------------------------------------------------------------------
input[type="search"]::-webkit-search-decoration
// Configuration
$rtl: true;
// Implementation
@function _($left, $right) {
@if $rtl {
@return $right;
} @else {
@return $left;
}
/*
* @description: /
*
* @author: / Stuart Robson
* @version: / 0.1
* @date: / dd/mm/yyyy
*
*
* @example: /
*
$ echo '@media screen {@media (min-width: 200px) {a: b}}' | scss
@media screen and (min-width: 200px) {
a: b; }