-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
73 lines (61 loc) · 1 KB
/
estilo.css
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
.flex-item {
width: 100px;
height: 100px;
border-radius: 4px;
display: flex;
align-items: center;
}
.base {
margin-bottom: 15px;
background-color: #d0d3d4;
border-radius: 4px;
}
.box1 {
background-color: #63b1bc;
}
.box2 {
background-color: #1f2a44;
}
.box3 {
background-color: #ed145b;
}
.box4 {
background-color: #efb661;
}
h1 {
width: fit-content;
margin: auto;
}
/* Insira o código abaixo */
.container1 {
display: flex;
}
.container2 {
display: flex;
justify-content: flex-end;
}
.container3 {
display: flex;
justify-content: center;
}
.container4 {
display: flex;
justify-content: space-between;
}
.container5 {
display: flex;
justify-content: space-around;
}
.container6 {
display: flex;
justify-content: space-evenly;
}
.container-exercicioB{
display: flex;
flex-direction: column-reverse;
}
.container-desafio{
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}