My attempt at adding an inner shadow to this CSS only YouTube icon, originally created by Jan Reimers (http://codepen.io/reimersjan/details/qKLbC).
A Pen by Jason Neel on CodePen.
# Testing Your Designs at Various Font Sizes | |
## Why Test? | |
Reasons for users bumping up the base font size or zoom level in their browsers aren’t just limited to those with vision impairments (although that should be reason enough for you to test your designs anyway). Certain browsing situations may necessitate inceasing the font size of your site’s text, such as displaying the site using a lower-resolution projector or when screen contrast is not high enough. | |
## Adjusting Your Browser’s Font Size | |
Testing your website design for when a user may have set their browser's zoom or base font size to something larger is fairly simple thing to do. Most browsers have a simple set of keyboard shortcuts for this purpose: |
# Jekyll Rake tasks | |
desc 'create new post or page. args: type (post, page), title, future (# of days), layout' | |
# rake new type=(page|post) future=0 title="New post title goes here" slug="slug-override-title" layout="post" | |
task :new do | |
require 'rubygems' | |
require 'chronic' | |
type = ENV["type"] || "post" | |
title = ENV["title"] || "New Title" |
My attempt at adding an inner shadow to this CSS only YouTube icon, originally created by Jan Reimers (http://codepen.io/reimersjan/details/qKLbC).
A Pen by Jason Neel on CodePen.