SlideShare une entreprise Scribd logo
1  sur  39
Télécharger pour lire hors ligne
CSS előfeldolgozók
Design kényelmesen
Stíluslapok tegnap: redundancia
.sidebar {
color: #445566;
}
.menu {
color: #445566;
}
Stíluslapok tegnap: CSS3
-webkit-transition: width 2s;
transition: width 2s;
Stíluslapok tegnap: helyérzékeny
szelektorok
.menu { … }
.menu ul { … }
.menu li { … }
.menu li a { … }
.menu li a span { … }
.menu li a img { … }
Stíluslapok tegnap: fájlok
<link … href="template.css">
<link … href="page.css">
<link … href="sidebar.css">
<link … href="admin.css">
<link … href="datatable.css">
Stíluslapok ma
• A CSS szintaxisa elavult
• Nincsenek változók 
• Nincsenek függvények
• Nincs // comment
• De van megoldás!
Stíluslapok ma
LASS
• Első CSS előfeldolgozó
• Javascript alapú fordító
• Folyamatosan fejlesztik még mindig
• Nagyon könnyen tanulható
• Nehéz debuggolni
• Van mixin könyvtár hozzá
• http://lesscss.org/
LESS: változók
@peltex-zold: #00cc22;
@peltex-kek: #1144bc;
#sidebar {
background-color: @peltex-kek;
}
LESS: mixinek
.bordered {
border-top: dotted 1px black;
border-bottom: dotted 2px black;
}
table td {
.bordered;
}
LESS: mixinek paraméterrel
.bordered (@thick: 1px) {
border-top: dotted @thick black;
border-bottom:dotted @thick black;
}
table td {
.bordered(2px);
}
LESS: mixin könyvtár
• Rengeteg előre definiált mixin
• Ahogy a szabványosítás halad, a
könyvtár is frissül (pl. border-radius)
• Példa:
.gradient(#F5F5F5, #EEE, #FFF);
.rounded(5px);
• http://lesselements.com/
LESS: nesting
.menu {
height: 40px;
ul {
padding-left: 0;
}
li {
border: 1px solid brown;
&:first-child {
border-left: 0;
}
}
}
LESS: matek és függvények
• Matek
@var: (1px + 5);
color: (#888 / 4);
• Függvények
width: percentage(0.5); // 50%
LESS: egyebek
• Kommentek
Van // 
• Statikus linkelés
@import "lib.css";
• Fordításkor összeszerkesztődik!
SASS
• Folyamatosan fejlesztik
• Könnyen tanulható
• Többet tud mint a LESS
• Remek debugger
• Ruby alapú fordító
• A SASS elérhető Gemként
• Van mixin könyvtár hozzá
• http://sass-lang.com/
SASS telepítés és használat
$ gem install sass
$ mv style.css style.scss
$ sass --watch style.scss:style.css
SASS: változók
$blue: #3bbfce;
$margin: 16px;
.border {
padding: $margin / 2;
margin: $margin / 2;
border-color: $blue;
}
SASS: mixinek (paraméterrel)
@mixin table-base {
th {
text-align: center;
font-weight: bold;
}
td, th { padding: 2px }
}
@mixin left($dist) {
float: left;
margin-left: $dist;
}
#data {
@include left(10px);
@include table-base;
}
SASS: mixin könyvtár
• Rengeteg előre definiált mixin
• Ahogy a szabványosítás halad, a
könyvtár is frissül (pl. border-radius)
• Példa:
.simple { @include border-radius(4px, 4px); }
font-face($name, $font-files, $eot, $weight, $style)
• http://compass-style.org
SASS: nesting, matek és függvények
Ugyanúgy mint LESS-ben
SASS: öröklődés
.error {
border: 1px #f00;
background: #fdd;
}
.error.intrusion {
font-size: 1.3em;
font-weight: bold;
}
.badError {
@extend .error;
border-width: 3px;
}
.error, .badError {
border: 1px #f00;
background: #fdd;
}
.error.intrusion,
.badError.intrusion {
font-size: 1.3em;
font-weight: bold;
}
.badError {
border-width: 3px;
}
FORDÍTÁS
SASS vezérlési szerkezetek
$type: monster;
p {
@if $type == ocean {
color: blue;
} @else {
color: black;
}
}
@for $i from 1 through 3 {
.item-#{$i} { width: 2em * $i; }
}
SASS egyebek
• Itt is van //
• Statikus linkelés mint LESS-ben
• CSS tömörítés
• …és nagyon jó debugger!
csak elvetemülteknek
• Folyamatosan fejlesztik
• Nehezen tanulható
• Nagy kifejezőerő
• Remek debugger
• Javascript alapú fordító
• Van mixin könyvtár hozzá
• Csak hardcore arcoknak
• http://learnboost.github.io/stylus/
innen indulunk
body {
font: 12px Helvetica, Arial, sans-serif;
}
a.button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
a kapcsos zárójelek
feleslegesek…
body
font: 12px Helvetica, Arial, sans-serif;
a.button
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
…a pontosvessző is…
body
font: 12px Helvetica, Arial, sans-serif
a.button
-webkit-border-radius: 5px
-moz-border-radius: 5px
border-radius: 5px
…ne álljunk meg itt, menjen a
pontosvessző is!
body
font 12px Helvetica, Arial, sans-serif
a.button
-webkit-border-radius 5px
-moz-border-radius 5px
border-radius 5px
de ez csak mind opcionális
body {
font: 12px Helvetica, Arial, sans-serif;
}
a.button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
változók
font-size = 14px
body
font font-size Arial, sans-serif
#logo
width: 150px
height: 80px
margin-left: -(@width / 2)
margin-top: -(@height / 2)
mixinek (paraméterrel)
border-radius(n)
-webkit-border-radius n
-moz-border-radius n
border-radius n
form input[type=button]
border-radius(5px)
mixinek (paraméterrel)
border-radius()
-webkit-border-radius arguments
-moz-border-radius arguments
border-radius arguments
mixin könyvtár
• Ahogy már eddig láthattuk
• Példa:
body
background linear-gradient(top, white, black)
• http://visionmedia.github.io/nib/
nesting, matek és függvények
Természetesen ezt is tudja.
öröklődés
.message {
padding: 10px;
border: 1px solid #eee;
}
.warning {
@extend .message;
color: #E2E21E;
}
.message,
.warning {
padding: 10px;
border: 1px solid #eee;
}
.warning {
color: #E2E21E;
}
FORDÍTÁS
vezérlési szerkezetek
box(x, y, margin = false)
padding y x
if margin
margin y x
egyebek
• Használható a //
• Statikus linkelés
• CSS tömörítés
• Nagyon jó debugger
Élő demó?

Contenu connexe

En vedette

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...DevGAMM Conference
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationErica Santiago
 

En vedette (20)

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 

CSS elofeldolgozok