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
Front End - Estilizando com CSS
Search
Juliane Albuquerque
November 11, 2017
Programming
0
29
Front End - Estilizando com CSS
Estilizando com CSS
Juliane Albuquerque
November 11, 2017
Tweet
Share
More Decks by Juliane Albuquerque
See All by Juliane Albuquerque
React Component Pattern
julianealbuquerque
0
57
Retrospectiva CSS
julianealbuquerque
0
18
Design System
julianealbuquerque
0
57
Front End - Web + HTML
julianealbuquerque
0
36
Front End - Classes + ID's + CSS + GITHUB
julianealbuquerque
0
42
Front End - Especificidade CSS + Box Model
julianealbuquerque
0
68
Front End - Bootstrap + Media Queries
julianealbuquerque
0
32
Front End - Javascript
julianealbuquerque
0
57
Front End - JQuery
julianealbuquerque
0
39
Other Decks in Programming
See All in Programming
Android 16 × Jetpack Composeで縦書きテキストエディタを作ろう / Vertical Text Editor with Compose on Android 16
cc4966
1
200
MCPとデザインシステムに立脚したデザインと実装の融合
yukukotani
4
1.4k
複雑なドメインに挑む.pdf
yukisakai1225
5
1.1k
ソフトウェアテスト徹底指南書の紹介
goyoki
1
150
RDoc meets YARD
okuramasafumi
4
170
私の後悔をAWS DMSで解決した話
hiramax
4
210
Introducing ReActionView: A new ActionView-compatible ERB Engine @ Rails World 2025, Amsterdam
marcoroth
0
680
Kiroの仕様駆動開発から見えてきたAIコーディングとの正しい付き合い方
clshinji
1
210
Updates on MLS on Ruby (and maybe more)
sylph01
1
180
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
140
個人軟體時代
ethanhuang13
0
320
知っているようで知らない"rails new"の世界 / The World of "rails new" You Think You Know but Don't
luccafort
PRO
1
110
Featured
See All Featured
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
A better future with KSS
kneath
239
17k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Into the Great Unknown - MozCon
thekraken
40
2k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.6k
For a Future-Friendly Web
brad_frost
180
9.9k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Building Better People: How to give real-time feedback that sticks.
wjessup
368
19k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
It's Worth the Effort
3n
187
28k
Transcript
DIA 2 - PARTE 01
DECLARAÇÕES DE COR As cores em CSS podem ser especificada
de várias maneiras: HEXADECIMAL #F00F00 RGB rgb(255, 0, 0) NOME red
CONHECENDO MAIS ALGUNS DECLARAÇÕES ESTILISANDO COM CSS
CSS - TIPOGRÁFIA h1 { font-family: monospace; } h2 {
font-family: "Arial", "Helvetica", sans-serif; }
p { text-align: center; line-height: 3px; /* tamanho da altura
de cada linha */ letter-spacing: 3px; /* tamanho do espaço entre cada letra */ word-spacing: 5px; /* tamanho do espaço entre cada palavra */ text-indent: 30px; /* tamanho da margem da primeira linha do texto */ } CSS - ALINHAMENTO
CSS - background div { background-image: url(image.png); background-repeat: no-repeat; background-color:
#f4f4f4; }
CSS - background body { border-color: green; border-style: solid; border-width:
1px; }