-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpoo.css
52 lines (45 loc) · 814 Bytes
/
fpoo.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
.FPOO {
display: flex;
flex-direction: column;
}
.FPOO h1 {
width: 100vw;
font-size: 50px;
margin-bottom: 10px;
text-align: center;
}
#conteudo-Container {
display: flex;
flex-direction: row;
text-align: justify;
}
article {
display: flex;
flex-direction: column;
width: 50%;
height: 100%;
gap: 20px;
}
#aside-FPOO {
display: flex;
flex-direction: column;
width: 50%;
align-items: center;
justify-content: space-around;
}
#aside-FPOO :first-child,
#aside-FPOO :nth-child(2) {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-end;
width: 100%;
}
#aside-FPOO :first-child img {
width: 20vw;
height: 20vw;
}
#aside-FPOO :nth-child(2) img {
width: 20vw;
height: 15vw;
}