Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Mobile and Responsive Design with Sass
Search
canarymason
July 27, 2012
Design
3
250
Mobile and Responsive Design with Sass
What is a Sass, and how will I know if I'm shaking it?
canarymason
July 27, 2012
Tweet
Share
More Decks by canarymason
See All by canarymason
Living Style Guides In Sass
canarymason
3
390
The Coding Designer's Survival Kit
canarymason
8
490
Other Decks in Design
See All in Design
AI時代に、僕たちデザイナーはどう歩むか
kazuhirokimura
0
340
事例で学ぶ!今日から使えるWebサービスUI改善ポイント
ncdc
0
230
1920*1080pxに設定したケース / Google Slide Size Test
arthur1
0
3.2k
FigmaのFigmaファイルから学ぶTips & Tricks
hilokifigma
0
650
portfolio.pdf
onof003
0
150
アプリ360onWeb使い方と裏ワザ?紹介!
ikejun360
0
230
エンジニアでも捗る デザイナー的思考入門
tinykitten
1
1.2k
保育AIプロダクトの UXデザインで考えてきたこと / hoiku-ai-ux-design
hiro93n
0
110
組織で取り組むアクセシビリティのはじめ方
masakiohsumi
0
170
Storyboard Honey
rocioparronrubio
0
410
文字コントラストを改めて考える / Reevaluating Text Contrast
lycorptech_jp
PRO
0
480
Tools for Design Engineers other than LLM in the LLM era
takanorip
1
440
Featured
See All Featured
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
Music & Morning Musume
bryan
46
6.7k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
jQuery: Nuts, Bolts and Bling
dougneiner
64
7.9k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
21k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.6k
We Have a Design System, Now What?
morganepeng
53
7.7k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.5k
For a Future-Friendly Web
brad_frost
179
9.9k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
Making Projects Easy
brettharned
117
6.3k
Transcript
What is a Sass, and How Will I Know if
I’m Shaking it? Friday, July 27, 12
Mobile and Responsive Design with Sass Friday, July 27, 12
I Friday, July 27, 12
Mobile First Friday, July 27, 12
The Mobile Web? Friday, July 27, 12
371k Babies are born each day Compare that to 1.5
million mobile device activations http://www.lukew.com/presos/preso.asp?26 Friday, July 27, 12
Most Personal Computer Friday, July 27, 12
Most Personal Computer Friday, July 27, 12
Constraints & Capabilities • Small screens • Frequent and sporadic
use. Distracted • Geolocation • Touch • Camera • Orientation Friday, July 27, 12
II Friday, July 27, 12
Responsive Web Design Friday, July 27, 12
My Website Totally Shrinks On Phones Friday, July 27, 12
Friday, July 27, 12
Friday, July 27, 12
Fluid Grids Proportional grids Use %, not px Friday, July
27, 12
Fluid Images src set The future. Get used to it?
Friday, July 27, 12
Fluid Images simple css The best we have. For now.
Friday, July 27, 12
Breaking News mattwilcox.net/archive/entry/id/1091 Friday, July 27, 12
Media Queries Magic! • @media screen and (min-width: 400px) {
… } • @media screen and (min-width: 400px) and (max- width: 700px) { … } • @media screen and (device-width: 800px) { … } • @media screen and (device-aspect-ratio: 16/9) { … } Friday, July 27, 12
Properties • width • height • device-width • device-height •
orientation • aspect-ratio • device-aspect- ratio • color • color-index • monochrome • resolution • scan • grid Friday, July 27, 12
Feature Detection Friday, July 27, 12
Modernizr • modernizr.com • use javascript to test for browser
features • write a css class to <html> if that feature exists Friday, July 27, 12
Modernizr Friday, July 27, 12
III Friday, July 27, 12
Sass CSS Preprocessor Adds more power to the process of
writing CSS sass-lang.com Friday, July 27, 12
Variables Sass Compiled CSS Friday, July 27, 12
Nesting Sass Compiled CSS Friday, July 27, 12
Mixins Sass Mixin Compiled CSS Sass Friday, July 27, 12
Extend Use in Sass Compiled CSS Setup Extendables Friday, July
27, 12
Media Bubbling Compiled CSS Sass Friday, July 27, 12
Compass Utilities CSS3 Images Sprites More Friday, July 27, 12
Compass Extensions Friday, July 27, 12
Sassy Buttons That fancy CSS3 button look with none of
the work jaredhardy.com/sassy-buttons Friday, July 27, 12
Modular Scale Calculate typographic scales github.com/scottkellum/modular-scale Friday, July 27, 12
Survival Kit A Toolset for Designing Web Sites in the
Browser thecodingdesigner.com/survivalkit Friday, July 27, 12
Susy Responsive grids for Compass susy.oddbird.net Friday, July 27, 12
Singularity Grid ALPHA Infinite possibilities. Impossibly small. singularity.gs Friday, July
27, 12
Crazy things sassy mother effing text shadow sassymothereffingtextshadow.com Friday, July
27, 12
Friday, July 27, 12
Friday, July 27, 12
Breakpoint Really simple media queries in Sass breakpoint-sass.com Friday, July
27, 12
Breakpoint Use in Sass Compiled CSS Setup Variables Friday, July
27, 12
Breakpoint Use in Sass Compiled CSS Setup Variables Friday, July
27, 12
IV Friday, July 27, 12
Drupal Great Content Management System. Bad Templates. Friday, July 27,
12
What is the best starter theme for responsive web design
in Drupal? Friday, July 27, 12
Friday, July 27, 12
Friday, July 27, 12
Avoid Cookie Cutters & Assertive Frameworks Friday, July 27, 12
V Friday, July 27, 12
Putting It Together Friday, July 27, 12
Goals Custom designs for your needs and content. Create the
mobile experience first. Have our content meet any device. Be future friendly. Acknowledge and embrace unpredictability. Friday, July 27, 12
Custom Is Your Friend Start with no theme, or a
“bare-bones” theme. Friday, July 27, 12
Zen + Zen Grids • Zen - Tried and tested
in the Drupal • Zen Grids Friday, July 27, 12
Survival Kit Designed For Style Guide Driven Design Designed For
Sass And Compass Intentionally Simple Use whatever grid you like Just a few guides, but use whatever styles you like Friday, July 27, 12
Demo Friday, July 27, 12
The Future Friday, July 27, 12
Survival Kit Module Will show the style guide pages from
the standard Survival Kit Friday, July 27, 12
Sass Conf Spring 2013 sassconf.com Friday, July 27, 12
Sass Trainings Follow @GoTeamSass and @Zivtech for details. Friday, July
27, 12
Questions & Contact Zivtech zivtech.com Mason Wendell - Creative Director
Twitter, Dribbble & Drupal: codingdesigner github: canarymason Friday, July 27, 12