-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyBiblioteca.css
108 lines (92 loc) · 1.85 KB
/
MyBiblioteca.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
/* Estilos Gerais */
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 20px;
text-align: center;
}
h1 {
color: #4a90e2;
margin-bottom: 30px;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
margin-top: 20px;
}
/* Botão Voltar */
#back-button {
padding: 10px 20px;
background-color: #ff4d4d;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-bottom: 20px;
}
#back-button:hover {
background-color: #d93636;
}
/* Filtro de Categorias */
#category-filter {
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #4a90e2;
margin-top: 10px;
}
/* Estilo da lista de animes */
#anime-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.anime {
background-color: white;
padding: 15px;
border-radius: 10px;
width: 200px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.anime img {
width: 150px;
height: 200px;
object-fit: cover;
border-radius: 5px;
}
.anime h3 {
margin-top: 10px;
font-size: 18px;
color: #333;
}
.anime p {
margin-top: 5px;
font-size: 14px;
color: #777;
}
/* Hover Animation */
.anime:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/* Estilos para o botão "Limpar Biblioteca" */
#clear-library-button {
margin-bottom: 20px;
}
/* Responsividade */
@media (max-width: 768px) {
#anime-list {
flex-direction: column;
align-items: center;
}
.anime {
width: 90%;
}
}