-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (72 loc) · 1.24 KB
/
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
82
83
84
85
86
87
88
89
:root {
--primary: #1a1a1a;
--accent: #FF6B6B;
}
body {
background-color: #ffffff;
color: var(--primary);
}
.glass {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.scroll-section {
scroll-snap-align: start;
min-height: 100vh;
padding: 80px 0;
}
.project-card {
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
html {
scroll-snap-type: y mandatory;
scroll-behavior: smooth;
}
.typewriter::after {
content: '|';
animation: blink 1s infinite;
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
.skill-badge {
transition: all 0.3s ease;
}
.skill-badge:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
canvas {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}
.hero-content {
animation: fadeIn 1s;
}
.mobile-menu {
display: none;
transform: translateY(-100%);
transition: 0.3s;
}
.mobile-menu.active {
display: block;
transform: translateY(0);
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
}