Skip to content

Instantly share code, notes, and snippets.

<h1>Privacy Policy &amp; Cookies</h1>
The privacy of your personal data is important to us. The following sets out what we do and don’t do with the information we collect using this website.
<h2>Your Consent</h2>
By using this website you agree to this privacy policy and when you submit any of your details or personal information, you are agreeing to the manner in which we will use those details as set out below.
<h2>Use of Cookies on Our Site</h2>
Our website uses cookies, as most websites do, to help provide you with the best experience we can. Cookies are small text files placed on your computer, mobile phone or other device, by websites you visit.
<h3>Cookies help us:</h3>
<ul>
<li>Make our website work as you’d expect</li>
<li>Save you having to login every time you visit the site</li>
@seanuk
seanuk / HTML Test Content
Last active August 9, 2016 17:46
HTML test content to check for unstyled HTML elements. Doubles as style guide content. Contains markup from Gravity Forms and Tablepress Wordpress plugins.
<div class="single-column">
<h2>Colours</h2>
<div class="colours wrapper">
<div class="third nested">
<div class="brand-color-primary-dark">Primary Dark</div>
<div class="brand-color-primary">Primary Colour</div>
<div class="brand-color-primary-light">Primary Light</div>
<div class="brand-color-primary-lighter">Primary Lighter</div>
</div>
<div class="third nested">
@seanuk
seanuk / checklist.md
Last active August 29, 2015 14:18 — forked from cole007/checklist.md
  • 404 page
  • print CSS
  • robots.txt
  • humans.txt
  • favicon.ico
  • compresses CSS
  • minified JS
  • google analytics code
  • webmaster tools
  • 301s (redesign sites)
@seanuk
seanuk / checklist.md
Last active August 29, 2015 14:18 — forked from cole007/checklist.md

@asclearasmud

SEO

  • robots.txt (ignore any system files/folders)
  • humans.txt
  • responsive meta tag (ensure user scaleable is set to yes)
  • meta keyword and description
  • Google Analytics code
  • site added to Google Webmaster Tools (GWT)
  • sitemap.xml added and uploaded to GWT
/*------------------------------------*\
$SPLIT
\*------------------------------------*/
/**
* Simple split item for creating two elements floated away from one another,
* e.g.:
*
<dl class=split>
<dt class=split__title>Burger and fries</dt>
<dd>&pound;5.99</dd>
@seanuk
seanuk / Standard Terms & Conditions.md
Last active April 16, 2023 02:24
My standard terms & conditions for web projects. Together with a signed project proposal it forms a working agreement. Includes bits borrowed from https://gist.github.com/malarkey/4031110 & https://gist.github.com/maban/6098135

Standard Terms & Conditions

The following terms and conditions, together with a signed project proposal, form an agreement that is intended to protect both parties, and is no way meant to trick or deceive you. We have tried to keep the wording as plain as possible, but if anything is unclear we will be more than happy to clarify it with you.

In short, [CLIENT COMPANY] (referred to herein as “you”) is engaging SJD Digital (referred to herein as “us” & “we”), to undertake the work as specified in the attached proposal, and under the requirements of these terms and conditions.

Deadlines

We will do our best to meet all agreed deadlines. You agree to review our work and provide feedback and approval in a timely manner. You accept that delays in supplying required information or materials may result in longer delays to the delivery of the finished work.

@seanuk
seanuk / 12col.css
Created April 23, 2013 19:44
12 column, mobile-up, responsive grid, with offsetting
.row {clear:both; margin:0; width:100%;}
.container {position:relative; margin:0 auto; padding:0 1.5em; max-width:1280px;}
.col {margin-bottom:1em; width:100%;}
@media only screen and (min-width:768px) {
.col {float:left; margin-right:2%;}
.col:last-child {margin-right:0;}
.grid-1 {width:6.5%;}
.grid-2 {width:15.0%;}
@seanuk
seanuk / Reveal user library in OSX
Created February 11, 2013 19:43
Reveal your Library in OSX Mountain Lion (permanently) via Terminal
chflags nohidden ~/Library/
@seanuk
seanuk / mq.css
Created October 6, 2012 07:17 — forked from chriscoyier/mq.css
Media Queries for Retina displays
@media only screen and (min-width: 320px) {
/* Small screen, non-retina */
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px),