-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.css
50 lines (49 loc) · 968 Bytes
/
contato.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
.contato {
background-color: var(--branco);
padding: 1em;
}
.contato-titulo,
.contato-texto {
background: var(--azul-degrade);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.contato-titulo {
font-size: 18px;
font-weight: 500;
}
.contato-texto {
font-weight: 300;
margin: 1em 0;
}
.contato-email {
padding: 1em;
border: 1px solid var(--azul);
border-radius: 24px;
width: 90%;
color: var(--azul);
}
.contato-email::placeholder {
font-family: var(--fonte-principal);
color: var(--azul);
background: url("./img/mail_black_24dp\ 1.svg") no-repeat;
padding-left: 2em;
}
@media screen and (min-width: 1024px) {
.contato {
display: flex;
justify-content: center;
align-items: center;
}
}
.contato-titulo {
font-size: 24px;
}
.contato-email{
width: 30%;
}
.contato-descricao{
margin-right: 1em;
width: 30%;
}