SlideShare a Scribd company logo
1 of 15
CSS3: What you can use today and how it degrades in browsers sennza  |  (07) 3040-1545  |  bronson@sennza.com.au  |  http://www.sennza.com.au/  |  Twitter: @sennza
What we’ll cover Some nifty CSS3 A brief intro into the following CSS3 elements:  CSS3 PIE   @font-face border-radius border-image rgba box-shadow text-shadow linear-gradient columns Slide 2 of 15 rethink  |  redesign  |  results
CSS3 PIE Mmmm, pie! What can it do?  PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features. PIE stands for Progressive Internet Explorer. It is an IE attached behaviour that allows IE to recognise and display some CSS3 properties. You can download CSS3 PIE from: http://css3pie.com/ CSS3  PIE will let you use the following CSS3 elements: ,[object Object]
 border-image ( needs a padding fix though )
 RGBa
 box-shadow
 linear-gradientSlide 3 of 15 rethink  |  redesign  |  results
@font-face Wave goodbye to cufon! .comment p { font-family: RabioheadRegular, "Comic Sans MS", Arial, sans-serif; font-size:30px; } Grab a font-face kit from http://www.fontsquirrel.com to try it out.  The CSS The Result @font-face { font-family: 'RabioheadRegular'; src: url('rabiohead/rabiohead-webfont.eot'); src: local('☺'), url('rabiohead/rabiohead-webfont.woff') format('woff'), url('rabiohead/rabiohead-webfont.ttf') format('truetype'), url('rabiohead/rabiohead-webfont.svg#webfont6j7ChCgu') format('svg'); font-weight: normal; font-style: normal; } Browsers: IE4+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 4 of 15 rethink  |  redesign  |  results
border-radius Her curves are kickin’! #circle { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; behavior: url(pie/PIE.htc); } The CSS #box { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; behavior: url(pie/PIE.htc); } The Result Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 5 of 15 rethink  |  redesign  |  results
border-image Haha I suck with a Wacom tablet! The image The measurements Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 6 of 15 rethink  |  redesign  |  results
border-image The CSS The Result .comment { border-width: 15px 15px 15px 30px; -o-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -icab-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -khtml-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -moz-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -web-kit-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; behavior: url(pie/PIE.htc); } Browsers: IE6+ (needs padding with CSS3PIE), FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 7 of 15 rethink  |  redesign  |  results
rgba I see through your lies! The Result The CSS #box { /*background-color:#662d91;*/ -pie-background:rgba(102, 51, 153, .25); background-color:rgba(102, 51, 153, .25); color:#fff; width:100px; height:100px; margin:10px; behavior: url(pie/PIE.htc); } The Format rgba (102, 51, 153, .25) (red, green, blue, alpha (0-1, 0 = 0%, 1 = 100%) Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 8 of 15 rethink  |  redesign  |  results
box-shadow My shadow follows me everywhere! The Result The CSS #box { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -moz-box-shadow:5px 5px 10px #999; -webkit-box-shadow:5px 5px 10px #999; box-shadow:5px 5px 10px #999; behavior: url(pie/PIE.htc); } The Format box-shadow:5px 5px 10px #999; (x offset, y offset, blur, colour) Browsers: IE6+, FF3.1+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 9 of 15 rethink  |  redesign  |  results
text-shadow Me and my shadow: what a team! The Result The CSS h1 { color:#662d91; font-family:Arial, Helvetica, sans-serif; letter-spacing:-1px; text-shadow:2px 2px 2px #c79ce8; } The Format text-shadow:2px 2px 2px#999; (x offset, y offset, blur, colour) Browsers: FF3.1+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 10 of 15 rethink  |  redesign  |  results
linear-gradient Can we give it a gradient? The CSS The Result #box { background-color:#662D91; color:#fff; width:100px; height:100px; margin:10px; background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#A94AF0), to(#662D91)); background:-moz-linear-gradient(100% 100% 90deg, #A94AF0, #662D91); -pie-background: linear-gradient(90deg, #A94AF0, #662D91); behavior: url(pie/PIE.htc); } The Format background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#A94AF0), to(#662D91)); -webkit-gradient(<type>, <point> [, <radius>]?, <point> [, <radius>]? [, <stop>]*) background:-moz-linear-gradient(100% 100% 90deg, #A94AF0, #662D91); -moz-linear-gradient( [<point> || <angle>,]? <stop>, <stop> [, <stop>]* ) Browsers: IE6+, FF3.1+, Chrome 4+, Safari 3.1+ Slide 11 of 15 rethink  |  redesign  |  results

More Related Content

What's hot

Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
Justin Avery
 

What's hot (20)

Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive Design
 
Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
 
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
 
Front End Best Practices
Front End Best PracticesFront End Best Practices
Front End Best Practices
 
Bootstrap [part 2]
Bootstrap [part 2]Bootstrap [part 2]
Bootstrap [part 2]
 
jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009
 
CSS in React
CSS in ReactCSS in React
CSS in React
 
Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
 
Dive into HTML5: SVG and Canvas
Dive into HTML5: SVG and CanvasDive into HTML5: SVG and Canvas
Dive into HTML5: SVG and Canvas
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?
 
Decoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSDecoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSS
 
Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JS
 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
 
Bilder usw...
Bilder usw...Bilder usw...
Bilder usw...
 
[edUi] HTML5 Workshop
[edUi] HTML5 Workshop[edUi] HTML5 Workshop
[edUi] HTML5 Workshop
 

Viewers also liked

Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
Jussi Pohjolainen
 

Viewers also liked (20)

Google+ Authorship Publisher Webinar - Search Influence
Google+ Authorship Publisher Webinar - Search InfluenceGoogle+ Authorship Publisher Webinar - Search Influence
Google+ Authorship Publisher Webinar - Search Influence
 
Introduction to jQuery Mobile
Introduction to jQuery MobileIntroduction to jQuery Mobile
Introduction to jQuery Mobile
 
Google+ Profile PageRank: The Real AuthorRank? - SMX Advanced 2013
Google+ Profile PageRank: The Real AuthorRank? - SMX Advanced 2013Google+ Profile PageRank: The Real AuthorRank? - SMX Advanced 2013
Google+ Profile PageRank: The Real AuthorRank? - SMX Advanced 2013
 
SEO Strategy and The Hummingbird Effect
SEO Strategy and The Hummingbird EffectSEO Strategy and The Hummingbird Effect
SEO Strategy and The Hummingbird Effect
 
The science of landing pages
The science of landing pagesThe science of landing pages
The science of landing pages
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
OpenGL 4.4 Reference Card
OpenGL 4.4 Reference CardOpenGL 4.4 Reference Card
OpenGL 4.4 Reference Card
 
Tables And SQL basics
Tables And SQL basicsTables And SQL basics
Tables And SQL basics
 
26 Social Media Marketing Trends for 2013
26 Social Media Marketing Trends for 201326 Social Media Marketing Trends for 2013
26 Social Media Marketing Trends for 2013
 
Introduction to Objective - C
Introduction to Objective - CIntroduction to Objective - C
Introduction to Objective - C
 
Copywriting
CopywritingCopywriting
Copywriting
 
The Psychology of C# Analysis
The Psychology of C# AnalysisThe Psychology of C# Analysis
The Psychology of C# Analysis
 
Enough with the JavaScript already!
Enough with the JavaScript already!Enough with the JavaScript already!
Enough with the JavaScript already!
 
Linux Introduction
Linux IntroductionLinux Introduction
Linux Introduction
 
Unit Testing Concepts and Best Practices
Unit Testing Concepts and Best PracticesUnit Testing Concepts and Best Practices
Unit Testing Concepts and Best Practices
 
Mvc architecture
Mvc architectureMvc architecture
Mvc architecture
 
Android vs iPhone - Differences in UI Patterns and Design
Android vs iPhone - Differences in UI Patterns and DesignAndroid vs iPhone - Differences in UI Patterns and Design
Android vs iPhone - Differences in UI Patterns and Design
 
SlideShare Zeitgeist 2013
SlideShare Zeitgeist 2013SlideShare Zeitgeist 2013
SlideShare Zeitgeist 2013
 
Java Tutorial
Java TutorialJava Tutorial
Java Tutorial
 
User Experience Best Practices
User Experience Best PracticesUser Experience Best Practices
User Experience Best Practices
 

Similar to Css3

2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960
LightSpeed
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
zainm7032
 
Kansas City WordCamp - Website Performance
Kansas City WordCamp - Website PerformanceKansas City WordCamp - Website Performance
Kansas City WordCamp - Website Performance
Kevin Potts
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3
Shay Howe
 
Sass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IVSass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IV
Dirk Ginader
 

Similar to Css3 (20)

Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?
 
Css3 101
Css3 101Css3 101
Css3 101
 
The Basics of CSS3
The Basics of CSS3The Basics of CSS3
The Basics of CSS3
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
 
Web Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at GoogleWeb Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at Google
 
CSS3 pronti all'uso
CSS3 pronti all'usoCSS3 pronti all'uso
CSS3 pronti all'uso
 
2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
 
PreDevCampSF - CSS3 Tricks
PreDevCampSF - CSS3 TricksPreDevCampSF - CSS3 Tricks
PreDevCampSF - CSS3 Tricks
 
Kansas City WordCamp - Website Performance
Kansas City WordCamp - Website PerformanceKansas City WordCamp - Website Performance
Kansas City WordCamp - Website Performance
 
Responsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da WebResponsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da Web
 
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3
 
CSS 3
CSS 3CSS 3
CSS 3
 
Learn to love CSS3 | Joomla! Day Deutschland
Learn to love CSS3 | Joomla! Day DeutschlandLearn to love CSS3 | Joomla! Day Deutschland
Learn to love CSS3 | Joomla! Day Deutschland
 
High Performance Webdesign
High Performance WebdesignHigh Performance Webdesign
High Performance Webdesign
 
Basics of html5, data_storage, css3
Basics of html5, data_storage, css3Basics of html5, data_storage, css3
Basics of html5, data_storage, css3
 
CSS and CSS3
CSS and CSS3CSS and CSS3
CSS and CSS3
 
Sass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IVSass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IV
 

More from Bronson Quick (7)

Debugging WordPress Core and Plugins!
Debugging WordPress Core and Plugins!Debugging WordPress Core and Plugins!
Debugging WordPress Core and Plugins!
 
Music
MusicMusic
Music
 
Quick Guide For WordPress SEO
Quick Guide For WordPress SEOQuick Guide For WordPress SEO
Quick Guide For WordPress SEO
 
Supercharging WordPress with BuddyPress
Supercharging WordPress with BuddyPressSupercharging WordPress with BuddyPress
Supercharging WordPress with BuddyPress
 
WordPress Is Taking Over The Internet
WordPress Is Taking Over The InternetWordPress Is Taking Over The Internet
WordPress Is Taking Over The Internet
 
Creating an online social network using WordPress and BuddyPress
Creating an online social network using WordPress and BuddyPressCreating an online social network using WordPress and BuddyPress
Creating an online social network using WordPress and BuddyPress
 
J Query - Your First Steps
J Query - Your First StepsJ Query - Your First Steps
J Query - Your First Steps
 

Css3

  • 1. CSS3: What you can use today and how it degrades in browsers sennza | (07) 3040-1545 | bronson@sennza.com.au | http://www.sennza.com.au/ | Twitter: @sennza
  • 2. What we’ll cover Some nifty CSS3 A brief intro into the following CSS3 elements: CSS3 PIE @font-face border-radius border-image rgba box-shadow text-shadow linear-gradient columns Slide 2 of 15 rethink | redesign | results
  • 3.
  • 4. border-image ( needs a padding fix though )
  • 7. linear-gradientSlide 3 of 15 rethink | redesign | results
  • 8. @font-face Wave goodbye to cufon! .comment p { font-family: RabioheadRegular, "Comic Sans MS", Arial, sans-serif; font-size:30px; } Grab a font-face kit from http://www.fontsquirrel.com to try it out. The CSS The Result @font-face { font-family: 'RabioheadRegular'; src: url('rabiohead/rabiohead-webfont.eot'); src: local('☺'), url('rabiohead/rabiohead-webfont.woff') format('woff'), url('rabiohead/rabiohead-webfont.ttf') format('truetype'), url('rabiohead/rabiohead-webfont.svg#webfont6j7ChCgu') format('svg'); font-weight: normal; font-style: normal; } Browsers: IE4+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 4 of 15 rethink | redesign | results
  • 9. border-radius Her curves are kickin’! #circle { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; behavior: url(pie/PIE.htc); } The CSS #box { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; behavior: url(pie/PIE.htc); } The Result Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 5 of 15 rethink | redesign | results
  • 10. border-image Haha I suck with a Wacom tablet! The image The measurements Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 6 of 15 rethink | redesign | results
  • 11. border-image The CSS The Result .comment { border-width: 15px 15px 15px 30px; -o-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -icab-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -khtml-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -moz-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; -web-kit-border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; border-image: url("images/bubble.jpg") 46 46 75 61 stretch stretch; behavior: url(pie/PIE.htc); } Browsers: IE6+ (needs padding with CSS3PIE), FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 7 of 15 rethink | redesign | results
  • 12. rgba I see through your lies! The Result The CSS #box { /*background-color:#662d91;*/ -pie-background:rgba(102, 51, 153, .25); background-color:rgba(102, 51, 153, .25); color:#fff; width:100px; height:100px; margin:10px; behavior: url(pie/PIE.htc); } The Format rgba (102, 51, 153, .25) (red, green, blue, alpha (0-1, 0 = 0%, 1 = 100%) Browsers: IE6+, FF3.5+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 8 of 15 rethink | redesign | results
  • 13. box-shadow My shadow follows me everywhere! The Result The CSS #box { background-color:#662d91; color:#fff; width:100px; height:100px; margin:10px; -moz-box-shadow:5px 5px 10px #999; -webkit-box-shadow:5px 5px 10px #999; box-shadow:5px 5px 10px #999; behavior: url(pie/PIE.htc); } The Format box-shadow:5px 5px 10px #999; (x offset, y offset, blur, colour) Browsers: IE6+, FF3.1+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 9 of 15 rethink | redesign | results
  • 14. text-shadow Me and my shadow: what a team! The Result The CSS h1 { color:#662d91; font-family:Arial, Helvetica, sans-serif; letter-spacing:-1px; text-shadow:2px 2px 2px #c79ce8; } The Format text-shadow:2px 2px 2px#999; (x offset, y offset, blur, colour) Browsers: FF3.1+, Opera 10+, Chrome 4+, Safari 3.1+ Slide 10 of 15 rethink | redesign | results
  • 15. linear-gradient Can we give it a gradient? The CSS The Result #box { background-color:#662D91; color:#fff; width:100px; height:100px; margin:10px; background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#A94AF0), to(#662D91)); background:-moz-linear-gradient(100% 100% 90deg, #A94AF0, #662D91); -pie-background: linear-gradient(90deg, #A94AF0, #662D91); behavior: url(pie/PIE.htc); } The Format background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#A94AF0), to(#662D91)); -webkit-gradient(<type>, <point> [, <radius>]?, <point> [, <radius>]? [, <stop>]*) background:-moz-linear-gradient(100% 100% 90deg, #A94AF0, #662D91); -moz-linear-gradient( [<point> || <angle>,]? <stop>, <stop> [, <stop>]* ) Browsers: IE6+, FF3.1+, Chrome 4+, Safari 3.1+ Slide 11 of 15 rethink | redesign | results
  • 16. columns Ssssaaayyy what? Automatic grids?!?! ZOMG! The CSS The Result body { margin:30px; -moz-column-count: 4; -webkit-column-count:4; column-count:4; -moz-column-rule : thin solid #662d91; -webkit-column-rule : thin solid #662d91; column-rule : thin solid #662d91; -moz-column-gap : 4em; -webkit-column-gap : 4em; column-gap : 4em; } Browsers: FF3.5+, Chrome 4+, Safari 3.1+ Slide 12 of 15 rethink | redesign | results
  • 17. CSS3 Links Clickity, click! CSS3 PIE http://css3pie.com Font Squirrel http://www.fontsquirrel.com/ An iPhone drawn purely with CSS3 http://demos.jeffbatterton.com/iphone-css3/ CSS3 Sandpit – Play with gradients, shadows, text strokes and transforms http://www.westciv.com/tools/gradients/index.html CSS3 Button Generator http://css-tricks.com/examples/ButtonMaker/ CSS3 Speech Bubbles http://nicolasgallagher.com/demo/pure-css-speech-bubbles/bubbles.html Slide 13 of 15 rethink | redesign | results
  • 18. Thanks & Questions Blatant plug for a new Meetup group WordPress Brisbane http://www.meetup.com/WordPress-Brisbane There seems to be a lack of WordPress Meetups or groups in Brisbane so let’s get the ball rolling. Please join us and when we get to around 30 members we’ll start organising Meetups! Slide 14 of 15 rethink | redesign | results
  • 19. bronson@sennza.com.au http://www.sennza.com.au/ Twitter: @sennza rethink | redesign | results