-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles_projects.css
More file actions
164 lines (144 loc) · 2.61 KB
/
Copy pathstyles_projects.css
File metadata and controls
164 lines (144 loc) · 2.61 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@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: #ff0000;
margin-bottom: 30px;
text-shadow: 2px 2px 15px #f50000;
animation: neonPulse 2s infinite alternate;
}
@keyframes neonPulse {
0% {
text-shadow: 0 0 10px #f50000;
}
100% {
text-shadow: 0 0 20px #f50000, 0 0 40px #f50000;
}
}
header h2 {
font-size: 1.8rem;
color: #ffffff;
margin-left: 40px;
margin-bottom: 25px;
position: relative;
}
header h2::after {
content: "";
position: absolute;
bottom: -8px;
left: 0;
height: 3px;
width: 100px;
background: #f50000;
border-radius: 10px;
animation: lineGrow 1.5s forwards;
}
@keyframes lineGrow {
from {
width: 0;
}
to {
width: 100px;
}
}
ol {
list-style: decimal inside;
font-weight: normal;
}
ol li::marker {
font-weight: bold;
}
.link-LF a {
display: inline-block;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 1.75rem;
margin-left: 3rem;
margin-bottom: 5px;
position: relative;
transition: color 0.4s ease;
}
.link-LF {
margin: 20px 40px;
}
.link-LF a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 0;
background-color: #ffffff;
transition: width 0.4s ease;
}
.link-LF a:hover {
color: #ff2c2c;
}
.link-LF a:hover::after {
width: 100%;
}
main ul {
padding-left: 50px;
font-size: 1.1rem;
list-style-type: disc;
color: #e0e0e0;
}
main ul li {
margin-bottom: 20px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(6px);
padding: 14px 22px;
border-left: 5px solid #f50000;
border-radius: 12px;
transition: transform 0.3s ease, background 0.3s ease;
}
main ul li:hover {
transform: translateX(12px);
background: rgba(245, 0, 0, 0.15);
}
main ol li {
margin-left: 50px;
margin-bottom: 10px;
padding-left: 5px;
color: #ededed;
}
@media (max-width: 768px) {
header h1 {
font-size: 2.2rem;
}
header h2 {
font-size: 1.4rem;
margin-left: 20px;
}
main ul {
padding-left: 20px;
}
main ol li {
margin-left: 25px;
}
}