Sha256: f3525abca1617b15d5ec5e57df8f8e67273e6fe30f66d43a04fb4ac7bad692f1

Contents?: true

Size: 957 Bytes

Versions: 7

Compression:

Stored size: 957 Bytes

Contents

# MISC SNIPPETS
**Stuff that might be useful to your life?**

## Fibonnaci Sequence -- basis for font sizes
1 2 3 5 8 13 21 34 55 89 144

## MOBILE CODE SNIPPETS

### iPhone/iPod Touch/iPad Home screen Icon
#### 57x57 PNG Image
- %link{:rel => 'apple-touch-icon', :href => '/'}

#### Act like a web app (no back button)
- %meta{:name => 'apple-mobile-web-app-capable', :content => 'yes'}

### Useful Media Queries

#### General Mobile Devices / Small Screen Size
- @media handheld and (max-width: 480px), screen and (max-device-width: 480px), screen and (max-width: 600px)

#### iPhone + iPod Touch Only
- @media only screen and (max-device-width: 480px)

#### iPad Only
- @media only screen and (min-device-width: 768px) and (max-device-width: 1024px)

#### iOS 4 Devices Only
- @media only screen and (-webkit-min-device-pixel-radio: 2)

#### Orientations
- @media only screen and (orientation: portrait)
- @media only screen and (orientation: landscape)

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
patcito-ricogen-0.3 SNIPPETS.md
ricogen-0.5 SNIPPETS.md
ricogen-0.4 SNIPPETS.md
ricogen-0.3 SNIPPETS.md
ricogen-0.2 SNIPPETS.md
ricogen-0.1 SNIPPETS.md
hamgen-0.1 SNIPPETS.md