-
Notifications
You must be signed in to change notification settings - Fork 0
/
novoProduto.css
65 lines (60 loc) · 1.19 KB
/
novoProduto.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
64
65
nav div.logo-busca div.logo {
display: flex;
align-items: center;
}
nav div.logo-busca div.logo a img {
width: 120px;
margin: 15px;
}
nav div.logo-busca div.logo button {
width: 135px;
height: 40px;
margin: 10px;
}
nav div.logo-busca div.logo img.vetor {
width: 20px;
margin: 10px;
}
section.produto {
display: flex;
flex-direction: column;
margin: 25px;
}
form.produto__novo {
display: flex;
flex-direction: column;
align-items: center;
}
form.produto__novo input {
width: 100%;
height: 56px;
margin-bottom: 10px;
}
form.produto__novo input.produto__descricao {
width: 100%;
height: 82px;
}
form.produto__novo button {
width: 100%;
height: 51px;
background-color: var(--cor-de-botoes);
color: var(--cor-de-fundo-cabecalho);
border-radius: 10px;
}
@media (min-width: 1440px) {
form.produto__novo input {
width: 559px;
height: 56px;
}
form.produto__novo input.produto__descricao {
width: 559px;
height: 82px;
}
form.produto__novo button {
width: 559px;
height: 51px;
}
section.produto h2 {
margin-left: 410px;
}
}