-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinhasResenhas.css
72 lines (64 loc) · 1.38 KB
/
MinhasResenhas.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
/* Estilos gerais */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
}
/* Título */
h1 {
text-align: center;
color: #333;
}
/* Container para a lista de animes */
#anime-list {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
/* Estilo de cada item de anime */
#anime-list div {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 15px;
margin: 10px 0;
width: 90%;
max-width: 600px;
}
/* Imagem do anime */
#anime-list img {
border-radius: 5px;
margin-bottom: 10px;
}
/* Estilo do textarea para resenha */
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-top: 10px;
resize: vertical; /* Permite que o usuário redimensione verticalmente */
}
/* Botão para salvar a resenha */
button {
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 10px;
}
button:hover {
background-color: #357abd;
}
/* Estilo do botão voltar */
#back-button {
margin-top: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}