2013-08-02
A sample pattern for responsive "footer anchor" navigation.
A Pen by Oliver Pattison on CodePen.
2014-01-31
CSS animation test, using an SVG jellyfish.
A Pen by Oliver Pattison on CodePen.
2014-02-22
Some of my photos on top of a custom MapBox terrain layer. This is a test for a photo gallery.
A Pen by Oliver Pattison on CodePen.
image: 1: - url: image1.jpg - caption: 'caption 1' - alt: 'alt text 1' - coordinates: [0, 52] image: 2:
{ | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow.tmTheme", | |
"enable_tab_scrolling": false, | |
"font_face": "Nitti Basic", | |
"font_options": | |
[ | |
"no_italic" | |
], | |
"font_size": 19, | |
"ignored_packages": |
--- | |
# No YAML required. Blank front matter so that CSS files can be included via Liquid templating. | |
# Make sure that the breaks are included at the start of the file so that Jekyll knows to process the Liquid includes. | |
--- | |
{% include reset.css %} | |
{% include base.css %} | |
{% include project.css %} |
--- | |
white: | |
hsl: 'hsla(138, 10%, 98%, 1)' | |
hex: '#f9fafa' | |
black: | |
hsl: 'hsla(138, 16%, 10%, 1)' | |
hex: '#151e18' | |
green: | |
hsl: 'hsla(138, 39%, 54%, 1)' | |
hex: '#5cb777' |
require 'stringex' | |
# rake command that generates a new post and opens in default text editor | |
desc "Generates a new note" | |
task :post, :title do |t, name| | |
if name.title | |
title = name.title | |
else | |
title = get_stdin("Enter a title: ") | |
end |
{ | |
"Version": "2008-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AddPermissions", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, | |
"Action": "s3:GetObject", |
# Title: Figure/image tag plugin for Jekyll | |
# Author: Oliver Pattison | http://oliverpattison.org | |
# Description: Create figure/img HTML blocks with optional classes and captions. This is a YAML-dependent Liquid tag plugin for Jekyll for those who fear link rot. | |
# | |
# Download/source/issues: https://github.com/opattison/jekyll-figure-image-tag | |
# Documentation: https://github.com/opattison/jekyll-figure-image-tag/blob/master/README.md | |
# | |
# Note: designed specifically for implementations with YAML front matter-based images, captions and alt text. | |
# Create YAML collections in a post like this: | |
# |