-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.css
More file actions
49 lines (44 loc) · 967 Bytes
/
banner.css
File metadata and controls
49 lines (44 loc) · 967 Bytes
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
@import url(header.css);
@import url(banner.css);
.banner{
background: var(--azul-degrade);
color: var(--branco);
text-align: center;
padding: 2.5em 2em;
}
.banner_texto{
font-weight: 500;
margin: 1em 0;
}
.banner_titulo{
font-size: 18px;
font-weight: 700;
}
.banner_pesquisa{
background-color: transparent;
border: 1px solid var(--branco);
color: var(--branco);
border-radius: 24px;
padding: 1em;
width: 100%;
}
.banner_pesquisa::placeholder{
font-family: var(--fonte-principal);
font-size: 14px;
font-weight: 400;
text-align: center;
color: var(--branco);
background: url(lupa.svg) no-repeat;
background-position: 1em;
}
@media screen and (min-width: 1728px){
.banner__pesquisa{
width:35%;
}
.banner__pesquisa::placeholder{
background-position: 12em;
}
.banner{
padding:6em 0;
}
}