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
56
Retrospectiva CSS
julianealbuquerque
0
17
Design System
julianealbuquerque
0
57
Front End - Web + HTML
julianealbuquerque
0
36
Front End - Classes + ID's + CSS + GITHUB
julianealbuquerque
0
41
Front End - Especificidade CSS + Box Model
julianealbuquerque
0
67
Front End - Bootstrap + Media Queries
julianealbuquerque
0
32
Front End - Javascript
julianealbuquerque
0
56
Front End - JQuery
julianealbuquerque
0
38
Other Decks in Programming
See All in Programming
Webの外へ飛び出せ NativePHPが切り拓くPHPの未来
takuyakatsusa
2
570
オンコール⼊⾨〜ページャーが鳴る前に、あなたが備えられること〜 / Before The Pager Rings
yktakaha4
1
560
チームのテスト力を総合的に鍛えて品質、スピード、レジリエンスを共立させる/Testing approach that improves quality, speed, and resilience
goyoki
5
990
テスト駆動Kaggle
isax1015
1
480
Deep Dive into ~/.claude/projects
hiragram
14
7.2k
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
120
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
260
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
880
Claude Code + Container Use と Cursor で作る ローカル並列開発環境のススメ / ccc local dev
kaelaela
11
6.5k
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
2
930
ご注文の差分はこちらですか? 〜 AWS CDK のいろいろな差分検出と安全なデプロイ
konokenj
3
370
レベル1の開発生産性向上に取り組む − 日々の作業の効率化・自動化を通じた改善活動
kesoji
0
260
Featured
See All Featured
The Cost Of JavaScript in 2023
addyosmani
51
8.5k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
Building an army of robots
kneath
306
45k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Bash Introduction
62gerente
613
210k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
Practical Orchestrator
shlominoach
189
11k
RailsConf 2023
tenderlove
30
1.1k
Why Our Code Smells
bkeepers
PRO
336
57k
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; }