-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 1.03 KB
/
Copy pathstyle.css
File metadata and controls
62 lines (54 loc) · 1.03 KB
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
.container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
align-content: center;
row-gap: 10px;
column-gap: 30px;
/* indiferente: */
background-color: #f9eac3;
padding: 16px;
height: 500px;
/* width: 400px; - usamos no flex-shrink*/
}
.bloco-1 {
order: 0;
/* flex-grow: 0;
flex-shrink: 1;
flex-basis: auto; */
flex: 0 1 auto;
align-self: flex-start;
/* indiferente: */
background-color: #c6d8f0;
}
.bloco-2 {
order: 0;
/* flex-grow: 0;
flex-shrink: 1;
flex-basis: auto; */
flex: 0 1 auto;
align-self: flex-end;
/* indiferente: */
background-color: #d8bfd8;
}
.bloco-3 {
order: 0;
/* flex-grow: 0;
flex-shrink: 1;
flex-basis: auto; */
flex: 0 1 auto;
align-self: center;
/* indiferente: */
background-color: #ff9999;
}
.bloco-1, .bloco-2, .bloco-3 {
/* indiferente: */
height: 150px;
width: 150px;
text-align: center;
font-size: 40px;
font-family: 'Courier New', Courier, monospace;
border-radius: 16px;
}