-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (46 loc) · 947 Bytes
/
style.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
body {
background: radial-gradient(circle, rgba(156,156,156,1) 0%, rgba(92,92,92,1) 22%, rgba(0,0,0,1) 100%);
background-repeat: inherit;
}
figure {
text-align: center;
}
.Contenedor {
display: flex;
align-items: center;
justify-content: space-around;
}
#BtnIzq, #BtnDer {
width: 3vw;
height: 3vw;
cursor: pointer;
filter: brightness(1.1);
mix-blend-mode: multiply;
transition:all .3s ease-in-out;
}
#BtnIzq:hover {
transform: scale(1.5);
filter: drop-shadow(2px 2px 5px rgb(20, 203, 228));
}
#BtnDer:hover {
transform: scale(1.5);
filter: drop-shadow(2px 2px 5px rgb(20, 203, 228));
}
#BtnIzq:active {
transform: scale(1.5);
filter: invert(200%)
}
#BtnDer:active {
transform: scale(1.5);
filter: invert(200%);
}
@media (width <= 1024px) {
#Pagina {
width: 80%;
height: 100%;
}
#BtnIzq, #BtnDer {
width: 6vw;
height: 6vw;
}
}