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
「描く」という衝動に立ち返る〜Figma Drawがひらく思考のかたち〜
transit_kix
1
830
Hatena Engineer Seminar #33 チームと開発するためのモック
takuwolog
0
300
An Early Spring | Storyboard | Scenes 1-18
giofortuna_story
0
250
Bulletproof Design System with TypeScript
takanorip
6
3.3k
ビジネスアナリシスはビジネス”分析”じゃないよ!~システム人材が価値を生むための基盤スキルとしてのビジネスアナリシス~
bpstudy
0
460
タイミーでフィールドワークしたら、サービスデザインが始まった
kenichiota0711
1
1.6k
デフォルトの16:9(960*540px)のケース / Google Slide Size Test
arthur1
0
2.8k
クライアントワークにおける UXリサーチの実践
kozotaira
0
670
【Firefly Image 4対応版】上手にFireflyにお願いしてウェブデザイン案を出すぞ!
cremacrema
0
1.2k
マンガで分かるサービスデザインガイドライン
senryakuka
1
880
Light My Fire/ハートに火をつけるコミュニティ
kgsi
1
120
オリジナルのデザイン地図を作ってみた!〜OpenMapTilesとMaputnikを活用した地図スタイル〜
hjmkth
1
540
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
94
14k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
52
2.8k
The Cost Of JavaScript in 2023
addyosmani
50
8.3k
Thoughts on Productivity
jonyablonski
69
4.7k
GitHub's CSS Performance
jonrohan
1031
460k
The World Runs on Bad Software
bkeepers
PRO
68
11k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Making Projects Easy
brettharned
116
6.2k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
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