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
ADKを使って簡単にAIエージェントを作ってみよう
k1mu21
0
260
Datadog × OpenTelemetry 入門と実践のあいだ
kn_to_maxpno
1
160
Lessons from Spec-Driven Development
simas
PRO
0
190
代数的データ型って何が嬉しいの? #frontend_phpcon_do
kajitack
8
3.7k
Creating Composable Callables in Contemporary C++
rollbear
0
130
脅威をエンジニアリングの糧にして――現場編 / Turning Threats into Engineering Fuel — Field Edition
nrslib
0
280
Javaの型とAI時代に型が大事な理由 / java types and type in AI era
kishida
2
130
Oxcを導入して開発体験が向上した話
yug1224
4
310
RTSPクライアントを自作してみた話
simotin13
0
600
JavaDoc 再入門
nagise
1
340
Java × distroless で 軽量なコンテナイメージを / Java on Distroless
contour_gara
0
540
Webフレームワークの ベンチマークについて
yusukebe
0
170
Featured
See All Featured
The Curious Case for Waylosing
cassininazir
1
390
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.5k
Beyond borders and beyond the search box: How to win the global "messy middle" with AI-driven SEO
davidcarrasco
3
160
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
590
Building a Modern Day E-commerce SEO Strategy
aleyda
45
9.1k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
940
B2B Lead Gen: Tactics, Traps & Triumph
marketingsoph
0
150
SEO Brein meetup: CTRL+C is not how to scale international SEO
lindahogenes
1
2.7k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
123
22k
It's Worth the Effort
3n
188
29k
How to make the Groovebox
asonas
2
2.2k
Skip the Path - Find Your Career Trail
mkilby
1
150
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