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
LESS
Search
Yuri Goytacaz
August 16, 2012
Programming
260
5
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
LESS
yuri goytacaz
Yuri Goytacaz
August 16, 2012
Other Decks in Programming
See All in Programming
型も通る、synthも通る、それでも危ない 〜AIのCDKの権限とコストを機械で検証する〜 / It Passes Type Checks, It Passes Synth Checks, but It’s Still Risky — Automatically Verifying Permissions and Costs in AI’s CDK —
seike460
PRO
1
550
Go言語とトイモデルで学ぶTransformerの気持ち / fukuokago23-transformer
monochromegane
0
170
freee が目指す データ マネジメント戦略 AI-Ready 時代を支える 攻めのガバナンスとは
freee
PRO
0
360
OpenSpecのproposalにbrainstormingを持たせてみた
tigertora7571
1
230
属人化した知識を、 AIが辿れる地図にする
pkshadeck
PRO
1
170
Augmenting AI with the Power of Jakarta EE
ivargrimstad
0
590
Building a Meta Ray-Ban display app
akkeylab
0
150
Apache Hive: そしてCloud Native Lakehouseへ
okumin
1
230
【やさしく解説 設計編・中級 #4】ルールの寿命と、システムの年輪
panda728
PRO
2
190
Detecting Compromised CI with eBPF and Cilium Tetragon
lizrice
0
180
Terraform標準の組織で AWS CDKをどう使うか
mu7889yoon
1
510
これって Effect でできたのでは? / TSKaigi Mashup Kansai #2
susisu
0
240
Featured
See All Featured
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Into the Great Unknown - MozCon
thekraken
41
2.7k
A Modern Web Designer's Workflow
chriscoyier
698
190k
Abbi's Birthday
coloredviolet
3
9.3k
How to Grow Your eCommerce with AI & Automation
katarinadahlin
PRO
1
240
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
How People are Using Generative and Agentic AI to Supercharge Their Products, Projects, Services and Value Streams Today
helenjbeal
1
260
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
123
22k
Leo the Paperboy
mayatellez
8
2.1k
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
640
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
490
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
710
Transcript
yuri goytacaz LESS
human does LESS machine does more
LESS extends CSS with dynamic behavior such as variables, mixins,
operations and functions.
LESS extends CSS with dynamic behavior such as variables, mixins,
operations and functions.
LESS extends CSS with dynamic behavior such as variables, mixins,
operations and functions.
LESS extends CSS with dynamic behavior such as variables, mixins,
operations and functions.
LESS extends CSS with dynamic behavior such as variables, mixins,
operations and functions.
variables mixins operations functions
variables mixins operations functions
variables mixins operations functions
// LESS @color: #4D926F; #header { color: @color; } h2
{ color: @color; } /* CSS */ #header { color: #4D926F; } h2 { color: #4D926F; } variables
// LESS .rounded-corners (@radius: 5px) { border-radius: @radius; -webkit-border-radius: @radius;
-moz-border-radius: @radius; } #header { .rounded-corners; } #footer { .rounded-corners(10px); } /* CSS */ #header { border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } #footer { border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; } mixins
como compilar?
como compilar? mac http://incident57.com/less http://yuri.gs/lessapp win http://wearekiss.com/simpless http://yuri.gs/simpless
http://lesscss.org http://yuri.gs/less