-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseguindo.css
98 lines (84 loc) · 1.82 KB
/
seguindo.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
/* Estilos Gerais */
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
color: #4a90e2;
margin-top: 20px;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
margin-top: 20px;
}
/* Estilo da seção de busca */
#search-section {
text-align: center;
margin-bottom: 20px;
}
#search-user {
padding: 10px;
width: 300px;
border: 2px solid #4a90e2;
border-radius: 5px;
font-size: 16px;
}
#search-user:focus {
border-color: #357abd;
}
/* Estilo dos resultados de usuários */
#user-results {
display: flex;
flex-direction: column;
align-items: center;
}
#user-results div {
display: flex;
align-items: center;
justify-content: space-between;
background-color: white;
padding: 10px;
border-radius: 10px;
width: 100%;
max-width: 400px;
margin-bottom: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#user-results button {
padding: 8px 15px;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#user-results button:hover {
background-color: #357abd;
}
/* Estilo da seção de usuários que o usuário segue */
#following-list {
margin-top: 20px;
text-align: center;
}
#following-list h2 {
margin-bottom: 15px;
color: #4a90e2;
}
/* Responsividade */
@media (max-width: 768px) {
#search-section {
flex-direction: column;
}
#search-user {
width: 90%; /* Ajustar o tamanho em telas pequenas */
}
#user-results {
width: 90%; /* Ajustar a largura dos resultados em telas pequenas */
}
}