-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-estilizacao.html
82 lines (65 loc) · 3.06 KB
/
06-estilizacao.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="06.css">
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel">
/*
Em React, estilos CSS são especificados por meio de objetos,
onde o nome propriedade corresponde ao nome da propriedade CSS
mas:
- Não são usados hífens no nome das propriedades, mas sim
camelCase. Por exemplo, backgreound-color (CSS) torna-se
backgroundColor, font-style vira fontStyle, etc.
- Todos os valores de propriedade não numéricos devem ser
especificados entre aspas.
*/
const smallStyle = {
backgroundColor: 'lightblue',
fontStyle: 'italic',
marginBottom: '20px'
}
const smallBox = <div className="box box--small" style={smallStyle}>Small box</div>
const smallBox2 = <div className="box box--small">Small box 2</div>
/*
Para usar estilos "inline" em um componente React, deve-se usar
chaves dentro de chaves.
- As chaves externas indicam que o conteúdo deve ser processado,
como se fosse uma variável
- As chaves internas delimitam o objeto que contém as propriedades de estilo
*/
const mediumBox = <div className="box box--medium" style={ {backgroundColor: 'pink',
fontWeight: 'bold', margin: '30px 0'}}>Medium box</div>
const largeBox = <div className="box box--large" style={ {
backgroundColor: 'orange', fontVariant: 'small-caps'
}}>Large box</div>
// Criando um componente personalizado
const CustomBox = ({style, size = 'small', ...props}) =>
<div className={`box box--${size}`} style={ { fontStyle: 'italic', ...style}}
{...props} />
const container =
<>
{smallBox}
{smallBox2}
{mediumBox}
{largeBox}
<CustomBox style={{ backgroundColor: 'limegreen', color: 'navy'}}
size="medium" id="custom1">Custom Box 1</CustomBox>
<CustomBox style={{ backgroundColor: 'tomato', color: 'yellow', fontWeight:'bold'}}
size="large">Custom Box 2</CustomBox>
<CustomBox style={{ fontStyle: 'normal', backgroundColor: 'sienna', color: 'limegreen'}}
size="small">Custom Box 3</CustomBox>
</>
ReactDOM.render(container, document.getElementById('root'))
</script>
</body>
</html>