-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (87 loc) · 1.73 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
body{
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
background-color: beige;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 0;
}
h1{
font-size: 2.5rem;
color: #222831;
text-align: center;
letter-spacing: 0.4rem;
}
section{
display: flex;
flex-direction:column;
align-items: center;
margin-bottom: 3rem;
}
section input{
width: 30rem;
border: none;
padding: 1rem;
border-radius: 1.5rem;
margin-bottom: 1rem;
color: #45474b;
font-size: 1rem;
box-sizing: border-box;
}
section button{
padding: 0.8rem 1.2rem;
border: none;
border-radius: 1.5rem;
background-color: #30475e;
color: #f5f7f8;
font-size: 1rem;
cursor: pointer;
}
.resultados-pesquisa{
width: 60rem;
height:50vh;
overflow-y: auto;
margin-top: 1rem;
padding: 1rem;
border-radius: 0.6rem;
}
img {
max-width: 25%; /* A imagem nunca será maior que o container */
height: auto; /* A altura se ajusta automaticamente para manter a proporção */
position: relative;
}
.item-resultado{
background: #75e4e4;
border-radius: 0.6rem;
padding: 1rem;
margin-bottom: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.item-resultado h2{
font-size: 1.5rem;
color: #222831;
}
.item-resultado a{
text-decoration: none;
color: #30475e;
}
.item-resultado a:hover{
text-decoration: underline;
}
.descricao-meta{
color: #45474b;
margin: 0.5rem 0;
}
footer{
background-color: #f5f7f8;
color: #45474b;
text-align: center;
padding: 0;
width: 100%;
position: relative;
bottom: 0;
font-size: 1rem;
}