-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (119 loc) · 2.23 KB
/
style.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
:root {
--fonte-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
--fonte-logo: 'Inter', sans-serif;
--azul-claro: #FEDBF1;
--preto: #000000;
--branco: #FFFFFF;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body, htlm {
width: 100%;
height: 100%;
font-family: var(--fonte-principal);
color: var(--preto);
font-size: 16px;
}
header {
background-color: #FEDBF1;
width: 100%;
height: 150px;
}
.menu-nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0px 50px;
}
.menu-logotipo img {
width: 300px;
height: 100px;
margin-top: 15px;
}
.menu-icones {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
}
.banner-flores img {
width: 100%;
height: 300px;
}
.itens-container {
width: 100%;
display: flex;
flex-direction: row;
gap: 20px;
margin: 0 20px;
}
.opcoes-itens {
display: flex;
flex-direction: column;
align-items: center;
width: 130px;
height: 800px;
border: 1px solid black;
}
.opcoes-itens ul {
display: flex;
flex-direction: column;
gap: 10px;
list-style: none;
}
.opcoes-itens li {
margin-top: 20px;
font-weight: 600;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.opcoes-itens a {
text-decoration: none;
}
.lista-itens {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 90%;
}
.produto-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 280px;
height: 380px;
gap: 10px;
border: 1px solid black;
background-color: white;
margin: 10px 20px;
}
.produto-item img {
width: 200px;
height: 200px;
}
.produto-item h1 {
font-size: 1.2rem;
}
.produto-item p {
font-size: 1.5rem;
font-weight: bold;
}
footer {
padding: 20px;
text-align: center;
background-color: var(--azul-claro);
}
footer h1 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
padding: 40px;
text-align: center;
}
.deletar-produto {
display: none;
}