-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
115 lines (99 loc) · 2.29 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
font-family: "Chakra Petch", sans-serif;
background-color: rgb(153, 242, 120);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 0;
}
h1 {
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: #eaf346;
color: #191b1d;
font-size: 1rem;
cursor: pointer;
}
section button:hover {
background-color: #e4ef83;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.resultados-pesquisa {
width: 60rem;
max-height: 46vh;
overflow-y: auto;
margin-top: 1rem;
padding: 1rem;
border-radius: 0.6rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
direction: ltr;
}
.resultados-pesquisa::-webkit-scrollbar {
width: 12px;
}
.resultados-pesquisa::-webkit-scrollbar-thumb {
background: #888;
border-radius: 6px;
}
.resultados-pesquisa::-webkit-scrollbar-thumb:hover {
background: #555;
}
.item-resultado {
background: #FFFFFF;
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: #62c9fc;
color: #303133;
text-align: center;
padding: 0.5rem;
width: 100%;
position: fixed;
bottom: 0;
font-size: 1rem;
}