-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvendedores.css
More file actions
58 lines (58 loc) · 1.14 KB
/
Copy pathvendedores.css
File metadata and controls
58 lines (58 loc) · 1.14 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
.vendedores {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 200px;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 40px;
gap: 48px;
}
.vendedor {
display: flex;
flex-direction: column;
width: 250px;
box-sizing: border-box;
background-color: #fff;
border-radius: 24px;
font-size: 18px;
box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}
.vendedor h3 {
color: #DF2F4F;
font-size: 18px;
font-weight: 700;
margin: 0;
}
.vendedor h4 {
color: #525252;
font-size: 16px;
font-weight: 700;
margin: 10px 0;
}
.vendedor h3::first-letter, .vendedor h4::first-letter, .vendedor p::first-letter {
text-transform: uppercase;
}
.vendedor img {
width: 250px;
height: 184px;
object-fit: cover;
border-bottom: 3px solid #df2f4f;
border-radius: 24px 24px 0 0;
}
.barra {
width: 100%;
height: 6px;
background-color: #DF2F4F;
margin: 0;
}
.perfil {
padding: 24px;
}
.perfil p {
font-weight: 500;
font-size: 16px;
}