-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
125 lines (103 loc) · 2.48 KB
/
style.scss
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
116
117
118
119
120
121
122
123
124
125
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #181818;
color: white;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 3.125rem;
background-color: black;
}
.nav-buttons {
display: flex;
gap: 30px;
}
img {
max-width: 100%;
}
.btn-gray {
border-radius: 5px;
width: 6rem;
border: 1px solid white;
background-color: #686868;
color: white;
transition: all 0.3s ease; /* Transição suave para todas as propriedades */
}
.btn-red {
background-color: red;
color: white;
width: 5rem;
border-radius: 5px;
border: 2px solid transparent;
transition: all 0.3s ease; /* Transição suave para todas as propriedades */
}
/* Efeito hover para os botões */
.btn-gray:hover,
.btn-red:hover {
transform: translateY(-5px); /* Move o botão levemente para cima */
opacity: 0.7; /* Deixa o botão levemente transparente */
}
/* Efeito específico de cor para cada botão */
.btn-gray:hover {
background-color: #505050; /* Muda a cor de fundo no hover */
color: #f0f0f0; /* Altera a cor do texto no hover */
}
.btn-red:hover {
background-color: #d90000; /* Muda a cor de fundo no hover */
color: #f0f0f0; /* Altera a cor do texto no hover */
}
.header-title {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.episode-list {
display: flex;
justify-content: space-around;
padding: 2rem;
}
.episode {
background-color: #333;
border-radius: 8px;
padding: 1rem;
text-align: center;
transition: transform 0.3s;
}
.episode:hover {
transform: scale(1.05); /* Efeito de zoom leve no container */
}
.episode img {
width: 200px; /* largura fixa */
height: 150px; /* altura fixa */
object-fit: cover; /* ajusta a imagem para cobrir o contêiner sem distorção */
transition: transform 0.5s; /* Animação para o movimento */
}
.episode img:hover {
transform: translateY(-19px); /* Move a imagem para cima ao passar o mouse */
}
footer ul {
display: flex;
justify-content: center;
gap: 20px;
list-style: none;
padding: 1rem 0;
}
footer ul {
list-style: none;
padding: 0;
}
footer li {
margin: 0.5rem 0;
transition: color 0.3s; /* Transição suave para a mudança de cor */
}
/* Efeito de hover */
footer li:hover {
color: #ff6347; /* Cor desejada ao passar o mouse, neste caso, um tom de laranja */
}