-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
44 lines (35 loc) · 794 Bytes
/
CSS.css
File metadata and controls
44 lines (35 loc) · 794 Bytes
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
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
box-sizing: border-box;
}
body {
font-family: "Inter var", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
}
a:hover {
text-decoration: underline;
}
.highlight:hover {
background-color: rgb(36, 36, 36);
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* effect for the icons */
.skill-icon {
transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.skill-icon:hover {
transform: scale(2.5) rotate(15deg);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}