-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles_experience.css
More file actions
111 lines (99 loc) · 1.89 KB
/
Copy pathstyles_experience.css
File metadata and controls
111 lines (99 loc) · 1.89 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
no-repeat center center/cover;
min-height: 100vh;
color: #eaeaea;
padding: 100px 30px 40px 30px;
animation: fadeIn 1.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
header h1 {
text-align: center;
font-size: 3rem;
color: #ffffff;
margin-bottom: 30px;
text-shadow: 2px 2px 15px #f5c400;
animation: neonPulse 2s infinite alternate;
}
@keyframes neonPulse {
0% {
text-shadow: 0 0 10px #f5c400;
}
100% {
text-shadow: 0 0 20px #f5c400, 0 0 40px #f5c400;
}
}
header h2 p {
font-size: 1.8rem;
color: #ffffff;
margin-left: 40px;
margin-bottom: 25px;
position: relative;
}
header h2 p::after {
content: "";
position: absolute;
bottom: -8px;
left: 0;
height: 3px;
width: 100px;
background: #f5c400;
border-radius: 10px;
animation: lineGrow 1.5s forwards;
}
@keyframes lineGrow {
from {
width: 0;
}
to {
width: 100px;
}
}
main h3 ul {
padding-left: 50px;
font-size: 1.1rem;
list-style-type: disc;
color: #e0e0e0;
}
main h3 ul li {
margin-bottom: 20px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(6px);
padding: 14px 22px;
border-left: 5px solid #f5c400;
border-radius: 12px;
transition: transform 0.3s ease, background 0.3s ease;
}
main h3 ul li:hover {
transform: translateX(12px);
background: rgba(245, 196, 0, 0.15);
}
@media (max-width: 768px) {
header h1 {
font-size: 2.2rem;
}
header h2 p {
font-size: 1.4rem;
margin-left: 20px;
}
main h3 ul {
padding-left: 20px;
}
}