-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (42 loc) · 890 Bytes
/
style.css
File metadata and controls
52 lines (42 loc) · 890 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
50
51
52
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
/* Título */
h1 {
letter-spacing: -0.5px;
}
/* Produto */
.product-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
/* Botões */
button {
transition: background 0.3s ease, transform 0.2s ease;
}
button:hover {
transform: scale(1.02);
background-color: #000000 !important;
}
/* Formulário */
input, textarea {
transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
border-color: #000000;
outline: none;
}
/* Carrinho */
#cart {
min-width: 200px;
}
/* Rodapé */
footer {
font-size: 0.875rem;
letter-spacing: 0.5px;
}