-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (82 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (82 loc) · 1.85 KB
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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
padding: 20px;
background: linear-gradient(45deg, #4e54c8, #8f94fb, #4e54c8, #8f94fb);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
#imageInput {
margin: 10px auto;
display: block;
background-color: #ff5722;
color: #fff;
border: none;
cursor: pointer;
border-radius: 30px;
padding: 12px 24px;
font-size: 16px;
transition: background-color 0.3s ease;
}
#imageInput:hover {
background-color: #e64a19;
}
#addButton {
padding: 12px 24px;
background-color: #ff5722;
color: #fff;
border: none;
cursor: pointer;
border-radius: 30px;
display: block;
margin: 10px auto;
font-size: 16px;
transition: background-color 0.3s ease;
}
#addButton:hover {
background-color: #e64a19;
}
#imageContainer {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
img {
width: 300px;
height: 300px;
margin: 10px;
border-radius: 8px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
img:hover {
transform: scale(1.1);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
img:active {
transform: scale(1);
}
/* Efeito de brilho dinâmico */
@keyframes shine {
from {
background-position: 0 0;
}
to {
background-position: 200% 0;
}
}
img.brilho {
background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
background-size: 200% 100%;
animation: shine 1.5s infinite;
}