-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (61 loc) · 1.16 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
63
64
65
66
67
68
69
70
*{
margin:0 ;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: rgb(255, 226, 255);
color: rgb(255, 226, 255);
}
.cabecalho{
background-color: rgb(250, 187, 250);
color: rgb(255, 255, 255);
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
padding: 12px 20px;
border-radius: 5px;
}
.cabecalho-marca{
display: flex;
align-items: center;
gap: 12px;
}
.cabecalho-imagem{
width: 150px;
height: 90px;
object-fit: cover;
border-radius: 5px;
}
.cabecalho-subtitulo{
font-size: 14px;
color: rgb(255, 255, 255);
}
.cabecalho-titulo{
color: rgb(0, 0, 0);
}
.cabecalho-lista{
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 60px;
}
.cabecalho-lista-item{
display: block;
}
.cabecalho a{
color: rgba(0, 0, 0, 0.884);
font-family: Calibri, sans-serif;
font-size: 20px;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 6px 8px;
border-radius: 4px;
}