-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.css
63 lines (53 loc) · 1.09 KB
/
banner.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
53
54
55
56
57
58
59
60
61
62
63
.banner {
background: var(--azul-degrade);
color: var(--branco);
text-align: center;
padding: 2.5em 2em;
}
.banner__titulo {
font-size: 18px;
font-weight: 700;
}
.banner__texto {
font-weight: 500;
margin: 1em 0;
}
.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("../img/Lupa.svg") no-repeat;
background-position: 1em;
}
@media screen and (min-width: 1024px) {
.banner__titulo {
font-size: 36px;
}
.banner__pesquisa {
width: 50%;
}
.banner__pesquisa::placeholder {
background-position: 7em;
}
}
@media screen and (min-width: 1728px) {
.banner__pesquisa {
width: 35%;
}
.banner__pesquisa::placeholder {
background-position: 12em;
}
.banner {
padding: 6em 0;
}
}