SlideShare a Scribd company logo
1 of 58
Stop your SharePoint CSS becoming a
di-SASS-ter today!
#SPSOslo
Stefan Bauer
October 17th, 2015
SharePoint Saturday
Oslo 2015
SharePoint Saturday
Oslo 2015
SharePoint Saturday
Oslo 2015
Thanks to our
Sponsors
n8d.at/blog
@StfBauer
Information Architect
Vienna / Austria
Stop your SharePoint CSS becoming a
di-SASS-ter today!
- I will explain what SASS is and how you can use it
- How to use SASS to brand SharePoint without requiring lengthy deployments.
- How to create simple Rich Text Editor Styles using mixins and includes.
- How to apply a Grid layout and make it Responsive.
- How to structure your branding correctly to make it more maintainable.
- How CSS 4 fits into the picture and does it make SASS obsolete?
BRANDING CHALLENGES
INTRODUCTION TO SASS
STRUCTURE YOUR BRANDING
2013 / 2016
Office 365
Changed SharePoint Branding
2003 2007 / 2010
2013
Inject CSS
154 files
Search & Destroy
Golden Age
Of
Master Page
CSS or JS
Cloud or On-
Premises
Old workflow
1. Create a farm solution
2. Add Master Page
3. Add CSS File
4. Deploy
5. Customized CSS File on Server
6. Copy final CSS File to Farm
Solution
7. Deploy Solution
8. Repeat step 1 - 8
PROS:
- Worked pretty well
- Centralized Design Files
- Ghosting
CONS:
- Development on the Server
- Farm solution
- One single CSS File
- Not cloud ready
Modularize CSS
Find and identify UI
Elements faster
Divide complexity into
smaller parts
Avoid development
conflicts
Listingofalargecomputerprogram –ArnoldReinhold
Avoid Repeating
Tasks
Reusable
components
Better maintainable
code
On-premises In the cloud
urce: http://my.n8d.at/1MVjnEV
CSS Spaghetti Code
Håkon Wium Lie
Father of CSS
First CSS Proposal
10th October 1994
Why is CSS the way it is?
CSS stops short of even more powerful features that
programmers use in their programming languages:
macros, variables, symbolic constants, conditionals,
expressions over variables, etc. That is because these
things give power-users a lot of rope, but less
experienced users will unwittingly hang themselves; or,
more likely, be so scared that they won’t even touch CSS.
It’s a balance. And for CSS the balance is different than for
some other things.
– Bert Bos
BRANDING CHALLENGES
INTRODUCTION TO SASS
STRUCTURE YOUR BRANDING
What is SASS
CSS Pre Processor
A layer between style sheets and CSS
faster, more efficient, and easier to
maintain.
MyBranding
.css
Layout
Typo
Colors
Sass (short for Syntactically Awesome Stylesheets)
SASS – Choose your style
SASS – Syntax
RUBY based syntax
File extension: .sass
SCSS – Syntax
Like you writing native CSS
Fileextension:.scss
SASS – for developer
Hack CSS
Benefitof a programminglanguage
Calculatestheheadlinefontbasedona
dynamicratio.Createafontshorthand
definitionbymergingallthefontpropertieslike
this.
CSS:
font: italic small-caps bold 1em/140%
Helvetica, sans-serif;
SASS - Variables
W3C - CSS Variables – Specification
:root {
--main-color: #06c;
--accent-color: #006;
}
/* The rest of the CSS file */
#foo h1 {
color: var(--main-color);
}
CSS – Variables
Post CSS – JavaScript
SASS – Nesting < Parent
SASS – Variables - Data types
• Numbers
1.2, 13, 10px
• Strings with or without quotes
"foo", 'bar', baz
• Colors
blue, #04a3f9, rgba(255, 0, 0, 0.5)
• Booleans
true / false
• Nulls
null – what else
• List of values
separated by spaces or commas
1.5em 1em 0 2em
Helvetica, Arial, sans-serif
• Maps from one value to
another
(key1: value1, key2: value2))
SASS - @extend
Define element – reuse it with overrides
SASS – Placeholder @extend
“%” acts like a new pseudo selector in addition to
class and id css selector
Extend element templates without extending
compiling the selector itself
SASS – Placeholder @extend
SASS - @mixin / @include
@mixin
• Re-use whole chunk of CSS
• Acts like functions
• Pass parameter
• Default values for
parameter
@include
• Extend a selector with
CSS
SASS - @mixin
CSS 3 transition mixin and browser fallback definitions
SASS - @include
@import – CSS vs SASS
CSS
• Each file will be
requested separately
• Slow down UI
• Don’t use it
SASS
• Compiles partials it into
CSS file
• Supports CSS import
• Allows to structure the
design
@import – CSS vs SASS
Filename: _yourvariables.scss
Use in SASS File:
@import ‘yourvariables’
@import ‘core/mixins’
Don’t forget the underscore!
Why SASS?
• CSS with superpower!
• Clean structured code
• Reusable components
• Consistency
• Many Extensions
Architecture your CSS:
• OOCSS
Object oriented CSS
• SMACSS
Scalable and Modular Architecture for CSS
• BEM
Block Element Modifier
Blog post:
Organizing CSS: OOCSS, SMACSS, and BEM
gem install sassSASS in Visual Studio
VS 2013 – Updated 2
Tryout & Learn
http://sassmeister.com
Yeoman
Runs on all major platforms (Windows, Mac, Linux)
Web related template engine
Yeoman – recommended templates
 generator-webapp
basic web application template
 generator-angular
angular web application template
 Microsoft Office Project Generator - YO OFFICE!
Yeoman – generator-webapp
Webserver (Node.js)
- Integrated SASS support
- Auto-compile SASS to CSS
- Auto reload web page
- CSS can be integrated into SharePoint
on-premise or Office 365
Work Locally
Inject CSS and JS
No deployment
downtime
Use JSOM / Rest API
Like an Add-in (App)
Full SASS Support
Works for Office 365 and
on-premises
Work Locally
- Integrate Yeoman into SharePoint
- Font reset in SharePoint
- Rich Text Editor mixin
DEMO
Work Locally – more information
Getting started
How I develop in SharePoint
and Office 365 now
How to use CSS and
JavaScript files from Yeoman
directly in SharePoint
Make SharePoint Responsive
http://www.zeendo.com/info/wp-content/uploads/2013/03/responsive-web-design.jpg
1. Define a Grid Layout
2. Define Media Breakpoints
3. Define how the content look and behave
Responsive Web Design
Susy Grid
Your Layout - our math
- Calculate grid
- Easy to use
- Built on SASS
- Easy SharePoint integration
- Susy Grid / Tutorials
- SASS Mediaqueries
Project on github
BRANDING CHALLENGES
INTRODUCTION TO SASS
STRUCTURE YOUR BRANDING
We’re not designing pages,
we’re designing systems of
components.
Stephen Hay
Responsive deliverables should look
a lot like fully-functioning Twitter
Bootstrap-style systems custom
tailored for your clients’ needs. –
Dave Rupert
MICRO BRANDING
JSLink, Display Templates and Script Embed
Web Parts allow you to add additional styles to
SharePoint
Modern Design Style Guides
- HTML based
- Dynamic Style Documentation
- Allow to build new UI Components
- Allows teams to work better together
Atomic Web Design – Brad Frost
http://patternlab.io
Pattern Lab brought to SharePoint
DEMO
Recap – SASS
• SASS helps you to write better CSS
– Keep an eye on the source code
– Well structured
• Supports DRY (Don’t repeat yourself) your
development
Recap - Create your own style guide
• Sketch in HTML first
• Create reusable components
• Document all design assets
• Add things you need rather than use a framework
Questions?
@StfBauer
https://at.linkedin.com/in/stfbauer
Get stamps from all the sponsors,
so make sure to visit them
Deposit the passport to enter the
prize raffle
Good luck!
The SPSOslo Passport
FREE BEER!
Make sure to get your voucher
Network and have fun with your
colleagues and mingle with our
great speaker lineup.
SharePint sponsored by
They help us improve for SharePoint Saturday 2016!
Remember to evaluate our sessions

More Related Content

Similar to SPS Oslo - Stop your SharePoint CSS becoming a di-sass-ter today!

European SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyEuropean SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyStefan Bauer
 
Create SASSy web parts in SPFx
Create SASSy web parts in SPFxCreate SASSy web parts in SPFx
Create SASSy web parts in SPFxStefan Bauer
 
SCSS Implementation
SCSS ImplementationSCSS Implementation
SCSS ImplementationAmey Parab
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionIrfan Maulana
 
Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqDignitasDigital1
 
Stop your sharepoint css becoming a disasster today spsbe2015
Stop your sharepoint css becoming a disasster today spsbe2015Stop your sharepoint css becoming a disasster today spsbe2015
Stop your sharepoint css becoming a disasster today spsbe2015BIWUG
 
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!Stefan Bauer
 
Create SASSY Web Parts - SPSMilan
Create SASSY Web Parts - SPSMilan Create SASSY Web Parts - SPSMilan
Create SASSY Web Parts - SPSMilan Stefan Bauer
 
Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?sharjeet
 
Structuring your CSS for maintainability: rules and guile lines to write CSS
Structuring your CSS for maintainability: rules and guile lines to write CSSStructuring your CSS for maintainability: rules and guile lines to write CSS
Structuring your CSS for maintainability: rules and guile lines to write CSSSanjoy Kr. Paul
 
CSS Workflow. Pre & Post
CSS Workflow. Pre & PostCSS Workflow. Pre & Post
CSS Workflow. Pre & PostAnton Dosov
 
Yahoo7 Tech Night - SASS
Yahoo7 Tech Night - SASSYahoo7 Tech Night - SASS
Yahoo7 Tech Night - SASSAndy Sharman
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sasschriseppstein
 
An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)Folio3 Software
 
Vskills certified css designer Notes
Vskills certified css designer NotesVskills certified css designer Notes
Vskills certified css designer NotesVskills
 
The sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajThe sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajYatendra Bhardwaj
 
The CSS Handbook
The CSS HandbookThe CSS Handbook
The CSS Handbookjackchenvlo
 
Web technologies-course 05.pptx
Web technologies-course 05.pptxWeb technologies-course 05.pptx
Web technologies-course 05.pptxStefan Oprea
 

Similar to SPS Oslo - Stop your SharePoint CSS becoming a di-sass-ter today! (20)

European SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyEuropean SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint Sassy
 
Create SASSy web parts in SPFx
Create SASSy web parts in SPFxCreate SASSy web parts in SPFx
Create SASSy web parts in SPFx
 
[Bauer] SASSy web parts with SPFX
[Bauer] SASSy web parts with SPFX[Bauer] SASSy web parts with SPFX
[Bauer] SASSy web parts with SPFX
 
SCSS Implementation
SCSS ImplementationSCSS Implementation
SCSS Implementation
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS Introduction
 
Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by Shafeeq
 
Stop your sharepoint css becoming a disasster today spsbe2015
Stop your sharepoint css becoming a disasster today spsbe2015Stop your sharepoint css becoming a disasster today spsbe2015
Stop your sharepoint css becoming a disasster today spsbe2015
 
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!
SPS Belgium - Stop your SharePoint CSS becoming a di-SASS-ter today!
 
Create SASSY Web Parts - SPSMilan
Create SASSY Web Parts - SPSMilan Create SASSY Web Parts - SPSMilan
Create SASSY Web Parts - SPSMilan
 
Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?
 
Structuring your CSS for maintainability: rules and guile lines to write CSS
Structuring your CSS for maintainability: rules and guile lines to write CSSStructuring your CSS for maintainability: rules and guile lines to write CSS
Structuring your CSS for maintainability: rules and guile lines to write CSS
 
CSS Workflow. Pre & Post
CSS Workflow. Pre & PostCSS Workflow. Pre & Post
CSS Workflow. Pre & Post
 
Yahoo7 Tech Night - SASS
Yahoo7 Tech Night - SASSYahoo7 Tech Night - SASS
Yahoo7 Tech Night - SASS
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sass
 
An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)
 
Vskills certified css designer Notes
Vskills certified css designer NotesVskills certified css designer Notes
Vskills certified css designer Notes
 
The sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajThe sass way - Yatendra Bhardwaj
The sass way - Yatendra Bhardwaj
 
UNIT 3.ppt
UNIT 3.pptUNIT 3.ppt
UNIT 3.ppt
 
The CSS Handbook
The CSS HandbookThe CSS Handbook
The CSS Handbook
 
Web technologies-course 05.pptx
Web technologies-course 05.pptxWeb technologies-course 05.pptx
Web technologies-course 05.pptx
 

More from Stefan Bauer

SPS Brussels 2016 - From design to a modern style guide branding strategies...
SPS Brussels 2016 - From design to a modern style guide   branding strategies...SPS Brussels 2016 - From design to a modern style guide   branding strategies...
SPS Brussels 2016 - From design to a modern style guide branding strategies...Stefan Bauer
 
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...Stefan Bauer
 
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...Stefan Bauer
 
Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016Stefan Bauer
 
From Design to a modern Style Guide
From Design to a modern Style GuideFrom Design to a modern Style Guide
From Design to a modern Style GuideStefan Bauer
 
Responsive Web Design and SharePoint
Responsive Web Design and SharePointResponsive Web Design and SharePoint
Responsive Web Design and SharePointStefan Bauer
 
Responsive vs Adaptive Web Design - What about Device Channels?
Responsive vs Adaptive Web Design - What about Device Channels?Responsive vs Adaptive Web Design - What about Device Channels?
Responsive vs Adaptive Web Design - What about Device Channels?Stefan Bauer
 

More from Stefan Bauer (7)

SPS Brussels 2016 - From design to a modern style guide branding strategies...
SPS Brussels 2016 - From design to a modern style guide   branding strategies...SPS Brussels 2016 - From design to a modern style guide   branding strategies...
SPS Brussels 2016 - From design to a modern style guide branding strategies...
 
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...
SPS Barcelona 2016 - Branding Strategies for SharePoint and Add-ins - From De...
 
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...
SharePoint Saturday Stockholm - Branding Strategies for SharePoint and Add-in...
 
Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016
 
From Design to a modern Style Guide
From Design to a modern Style GuideFrom Design to a modern Style Guide
From Design to a modern Style Guide
 
Responsive Web Design and SharePoint
Responsive Web Design and SharePointResponsive Web Design and SharePoint
Responsive Web Design and SharePoint
 
Responsive vs Adaptive Web Design - What about Device Channels?
Responsive vs Adaptive Web Design - What about Device Channels?Responsive vs Adaptive Web Design - What about Device Channels?
Responsive vs Adaptive Web Design - What about Device Channels?
 

Recently uploaded

Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 

Recently uploaded (20)

Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 

SPS Oslo - Stop your SharePoint CSS becoming a di-sass-ter today!

  • 1. Stop your SharePoint CSS becoming a di-SASS-ter today! #SPSOslo Stefan Bauer October 17th, 2015 SharePoint Saturday Oslo 2015
  • 2. SharePoint Saturday Oslo 2015 SharePoint Saturday Oslo 2015 Thanks to our Sponsors
  • 4. Stop your SharePoint CSS becoming a di-SASS-ter today! - I will explain what SASS is and how you can use it - How to use SASS to brand SharePoint without requiring lengthy deployments. - How to create simple Rich Text Editor Styles using mixins and includes. - How to apply a Grid layout and make it Responsive. - How to structure your branding correctly to make it more maintainable. - How CSS 4 fits into the picture and does it make SASS obsolete?
  • 5. BRANDING CHALLENGES INTRODUCTION TO SASS STRUCTURE YOUR BRANDING
  • 6. 2013 / 2016 Office 365 Changed SharePoint Branding 2003 2007 / 2010 2013 Inject CSS 154 files Search & Destroy Golden Age Of Master Page CSS or JS Cloud or On- Premises
  • 7. Old workflow 1. Create a farm solution 2. Add Master Page 3. Add CSS File 4. Deploy 5. Customized CSS File on Server 6. Copy final CSS File to Farm Solution 7. Deploy Solution 8. Repeat step 1 - 8 PROS: - Worked pretty well - Centralized Design Files - Ghosting CONS: - Development on the Server - Farm solution - One single CSS File - Not cloud ready
  • 8. Modularize CSS Find and identify UI Elements faster Divide complexity into smaller parts Avoid development conflicts Listingofalargecomputerprogram –ArnoldReinhold
  • 10. On-premises In the cloud urce: http://my.n8d.at/1MVjnEV
  • 12. Håkon Wium Lie Father of CSS First CSS Proposal 10th October 1994
  • 13. Why is CSS the way it is? CSS stops short of even more powerful features that programmers use in their programming languages: macros, variables, symbolic constants, conditionals, expressions over variables, etc. That is because these things give power-users a lot of rope, but less experienced users will unwittingly hang themselves; or, more likely, be so scared that they won’t even touch CSS. It’s a balance. And for CSS the balance is different than for some other things. – Bert Bos
  • 14. BRANDING CHALLENGES INTRODUCTION TO SASS STRUCTURE YOUR BRANDING
  • 15. What is SASS CSS Pre Processor A layer between style sheets and CSS faster, more efficient, and easier to maintain. MyBranding .css Layout Typo Colors Sass (short for Syntactically Awesome Stylesheets)
  • 16. SASS – Choose your style SASS – Syntax RUBY based syntax File extension: .sass SCSS – Syntax Like you writing native CSS Fileextension:.scss
  • 17. SASS – for developer Hack CSS Benefitof a programminglanguage Calculatestheheadlinefontbasedona dynamicratio.Createafontshorthand definitionbymergingallthefontpropertieslike this. CSS: font: italic small-caps bold 1em/140% Helvetica, sans-serif;
  • 19. W3C - CSS Variables – Specification :root { --main-color: #06c; --accent-color: #006; } /* The rest of the CSS file */ #foo h1 { color: var(--main-color); } CSS – Variables Post CSS – JavaScript
  • 20. SASS – Nesting < Parent
  • 21. SASS – Variables - Data types • Numbers 1.2, 13, 10px • Strings with or without quotes "foo", 'bar', baz • Colors blue, #04a3f9, rgba(255, 0, 0, 0.5) • Booleans true / false • Nulls null – what else • List of values separated by spaces or commas 1.5em 1em 0 2em Helvetica, Arial, sans-serif • Maps from one value to another (key1: value1, key2: value2))
  • 22. SASS - @extend Define element – reuse it with overrides
  • 23. SASS – Placeholder @extend “%” acts like a new pseudo selector in addition to class and id css selector Extend element templates without extending compiling the selector itself
  • 25. SASS - @mixin / @include @mixin • Re-use whole chunk of CSS • Acts like functions • Pass parameter • Default values for parameter @include • Extend a selector with CSS
  • 26. SASS - @mixin CSS 3 transition mixin and browser fallback definitions
  • 28. @import – CSS vs SASS CSS • Each file will be requested separately • Slow down UI • Don’t use it SASS • Compiles partials it into CSS file • Supports CSS import • Allows to structure the design
  • 29. @import – CSS vs SASS Filename: _yourvariables.scss Use in SASS File: @import ‘yourvariables’ @import ‘core/mixins’ Don’t forget the underscore!
  • 30.
  • 31. Why SASS? • CSS with superpower! • Clean structured code • Reusable components • Consistency • Many Extensions Architecture your CSS: • OOCSS Object oriented CSS • SMACSS Scalable and Modular Architecture for CSS • BEM Block Element Modifier Blog post: Organizing CSS: OOCSS, SMACSS, and BEM
  • 32. gem install sassSASS in Visual Studio VS 2013 – Updated 2 Tryout & Learn http://sassmeister.com
  • 33. Yeoman Runs on all major platforms (Windows, Mac, Linux) Web related template engine
  • 34. Yeoman – recommended templates  generator-webapp basic web application template  generator-angular angular web application template  Microsoft Office Project Generator - YO OFFICE!
  • 35. Yeoman – generator-webapp Webserver (Node.js) - Integrated SASS support - Auto-compile SASS to CSS - Auto reload web page - CSS can be integrated into SharePoint on-premise or Office 365
  • 36. Work Locally Inject CSS and JS No deployment downtime Use JSOM / Rest API Like an Add-in (App) Full SASS Support Works for Office 365 and on-premises
  • 37. Work Locally - Integrate Yeoman into SharePoint - Font reset in SharePoint - Rich Text Editor mixin DEMO
  • 38. Work Locally – more information Getting started How I develop in SharePoint and Office 365 now How to use CSS and JavaScript files from Yeoman directly in SharePoint
  • 40. 1. Define a Grid Layout 2. Define Media Breakpoints 3. Define how the content look and behave Responsive Web Design
  • 41.
  • 42. Susy Grid Your Layout - our math - Calculate grid - Easy to use - Built on SASS - Easy SharePoint integration - Susy Grid / Tutorials - SASS Mediaqueries Project on github
  • 43. BRANDING CHALLENGES INTRODUCTION TO SASS STRUCTURE YOUR BRANDING
  • 44. We’re not designing pages, we’re designing systems of components. Stephen Hay
  • 45. Responsive deliverables should look a lot like fully-functioning Twitter Bootstrap-style systems custom tailored for your clients’ needs. – Dave Rupert
  • 46. MICRO BRANDING JSLink, Display Templates and Script Embed Web Parts allow you to add additional styles to SharePoint
  • 47. Modern Design Style Guides - HTML based - Dynamic Style Documentation - Allow to build new UI Components - Allows teams to work better together
  • 48. Atomic Web Design – Brad Frost
  • 49.
  • 50.
  • 52. Pattern Lab brought to SharePoint DEMO
  • 53. Recap – SASS • SASS helps you to write better CSS – Keep an eye on the source code – Well structured • Supports DRY (Don’t repeat yourself) your development
  • 54. Recap - Create your own style guide • Sketch in HTML first • Create reusable components • Document all design assets • Add things you need rather than use a framework
  • 56. Get stamps from all the sponsors, so make sure to visit them Deposit the passport to enter the prize raffle Good luck! The SPSOslo Passport
  • 57. FREE BEER! Make sure to get your voucher Network and have fun with your colleagues and mingle with our great speaker lineup. SharePint sponsored by
  • 58. They help us improve for SharePoint Saturday 2016! Remember to evaluate our sessions

Editor's Notes

  1. Template may not be modified Twitter hashtag: #spsoslo for all sessions
  2. http://www.tibco.com/blog/2013/08/22/esb-does-not-equal-soa-learn-the-real-equation/
  3. Classical