-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmore-styles.css
81 lines (64 loc) · 1.22 KB
/
more-styles.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
.blurred-image {
filter: blur(10px);
transition: filter 3s ease-out;
}
.project {
transition: transform 0.3s ease-in-out;
}
.project:hover {
animation: bounce 0.6s ease-in-out;
}
@keyframes bounce {
0% {
transform: translateY(0);
}
20% {
transform: translateY(-10px);
}
40% {
transform: translateY(0);
}
60% {
transform: translateY(-5px);
}
80% {
transform: translateY(0);
}
100% {
transform: translateY(0);
}
}
.glass-effect {
position: relative;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
backdrop-filter: blur(20px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
.glass-effect::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
}
.skill-cloud {
display: flex;
flex-wrap: wrap;
gap: 10px;
/* justify-content: space-around; */
padding: 20px;
}
/* Styling images in the skill cloud */
.skill-image {
width: 3rem;
height: auto;
transition: transform 0.3s ease;
}
.skill-image:hover {
transform: scale(1.6);
}