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
30
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
58
Retrospectiva CSS
julianealbuquerque
0
19
Design System
julianealbuquerque
0
58
Front End - Web + HTML
julianealbuquerque
0
37
Front End - Classes + ID's + CSS + GITHUB
julianealbuquerque
0
43
Front End - Especificidade CSS + Box Model
julianealbuquerque
0
69
Front End - Bootstrap + Media Queries
julianealbuquerque
0
33
Front End - Javascript
julianealbuquerque
0
58
Front End - JQuery
julianealbuquerque
0
40
Other Decks in Programming
See All in Programming
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
140
モテるデスク環境
mozumasu
3
1.4k
Kotlinで実装するCPU/GPU 「協調的」パフォーマンス管理
matuyuhi
0
210
フロントエンド開発のためのブラウザ組み込みAI入門
masashi
7
3.7k
NIKKEI Tech Talk#38
cipepser
0
350
Go言語はstack overflowの夢を見るか?
logica0419
0
680
contribution to astral-sh/uv
shunsock
0
580
釣り地図SNSにおける有料機能の実装
nokonoko1203
0
200
When Dependencies Fail: Building Antifragile Applications in a Fragile World
selcukusta
0
120
マンガアプリViewerの大画面対応を考える
kk__777
0
440
EMこそClaude Codeでコード調査しよう
shibayu36
0
530
AIと人間の共創開発!OSSで試行錯誤した開発スタイル
mae616
2
850
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
76
5.1k
The Language of Interfaces
destraynor
162
25k
Product Roadmaps are Hard
iamctodd
PRO
55
11k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.7k
Optimising Largest Contentful Paint
csswizardry
37
3.5k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.5k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
54k
How STYLIGHT went responsive
nonsquared
100
5.9k
Automating Front-end Workflow
addyosmani
1371
200k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
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; }