-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (89 loc) · 2.08 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
body {
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
font-family: Arial, sans-serif;
}
.content-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 100px; /* Altura do header */
background-color: #f0f0f0; /* Cor de fundo do header */
padding: 1rem 2rem;
z-index: 1;
display: flex;
justify-content: center;
width: 100%;
}
main {
margin-top: 120px; /* Espaço abaixo do header */
text-align: center;
width: 100%;
flex: 1; /* Permite que o main ocupe o espaço restante */
}
footer {
position: relative; /* Usa 'relative' para se ajustar dentro da tela */
height: 50px; /* Altura reduzida do footer */
padding: 0.5rem 1rem; /* Ajuste o padding para não ultrapassar a tela */
text-align: center;
width: 100%;
font-size: 0.9rem; /* Ajusta o tamanho da fonte */
box-sizing: border-box; /* Inclui padding e border no tamanho total do footer */
}
footer p {
margin: 0; /* Remove margens para evitar overflow */
}
/* Estilos para a barra de pesquisa */
input[type="text"] {
width: 80%;
max-width: 400px;
padding: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 1rem 2rem;
background-color: #ffd700;
font-weight: 1000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-left: 1rem;
}
section {
padding: 2rem;
}
.item-card {
border: 1px solid #ccc;
border-radius: 10px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
}
.item-card img {
max-width: 20%;
margin-bottom: 1rem;
}
h1, h2 {
font-family: "Playfair Display", serif;
font-size: 30px;
color: #000000;
}
p {
font-family: "Roboto", sans-serif;
color: #333;
}