-
Notifications
You must be signed in to change notification settings - Fork 0
/
details-anime.css
86 lines (75 loc) · 1.49 KB
/
details-anime.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
/* Estilos Gerais */
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
h1 {
text-align: center;
color: #4a90e2;
margin-top: 20px;
}
.container {
width: 90%;
max-width: 800px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Estilo da seção de detalhes */
#anime-details {
text-align: center;
}
#anime-details img {
width: 300px;
height: auto;
object-fit: cover;
border-radius: 10px;
margin-bottom: 20px;
}
#anime-details h2 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
#anime-details p {
font-size: 16px;
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}
#anime-details strong {
color: #333;
}
/* Botão de Voltar */
.back-button {
display: inline-block;
padding: 10px 20px;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
font-size: 16px;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #357abd;
}
/* Responsividade */
@media (max-width: 768px) {
#anime-details img {
width: 100%;
}
.container {
padding: 10px;
}
}