-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
168 lines (158 loc) · 3.43 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
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
165
166
167
168
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body and Background Animation */
body {
background: #000;
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
overflow-x: hidden;
animation: bgAnimation 10s infinite linear;
}
@keyframes bgAnimation {
0% { background-color: #000; }
25% { background-color: #1a1a1a; }
50% { background-color: #333; }
75% { background-color: #1a1a1a; }
100% { background-color: #000; }
}
/* Header Styles */
header {
padding: 20px;
text-align: center;
background-color: #111;
border-bottom: 2px solid #00ff00;
animation: rgbGlow 3s infinite alternate;
}
header h1 {
font-size: 2.5rem;
text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}
nav a {
text-decoration: none;
color: #00ff00;
margin: 0 15px;
font-size: 1.2rem;
transition: color 0.3s, text-shadow 0.3s;
}
nav a:hover {
color: #fff;
text-shadow: 0 0 10px #fff, 0 0 20px #00ff00;
}
/* Hero Section */
.hero {
text-align: center;
padding: 50px 20px;
animation: fadeIn 2s ease-in-out;
}
.profile-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 30px;
position: relative;
}
.profile-img {
border-radius: 50%;
width: 150px;
height: 150px;
margin-right: 20px;
box-shadow: 0 0 10px #00ff00;
transition: transform 0.3s;
}
.profile-img:hover {
transform: scale(1.1);
}
.profile-text {
font-size: 1.2rem;
text-align: left;
max-width: 500px;
}
.terminal {
background: #111;
border: 2px solid #00ff00;
padding: 20px;
margin: 20px auto;
width: 80%;
border-radius: 10px;
box-shadow: 0 0 10px #00ff00;
animation: rgbGlow 3s infinite alternate;
}
/* Repositories Section */
#repositories {
padding: 40px 20px;
text-align: center;
}
.repo-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
}
.repo-item {
background: #222;
margin: 10px;
padding: 20px;
width: 300px;
border-radius: 10px;
box-shadow: 0 0 10px #00ff00;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.repo-item:hover {
transform: scale(1.05);
box-shadow: 0 0 20px #00ff00;
}
.repo-item h3 {
margin-bottom: 10px;
font-size: 1.5rem;
}
.repo-item p {
font-size: 1.1rem;
margin-bottom: 15px;
}
.repo-item a {
text-decoration: none;
color: #00ff00;
font-weight: bold;
font-size: 1.1rem;
}
/* Footer Styles */
footer {
text-align: center;
padding: 20px;
background-color: #111;
border-top: 2px solid #00ff00;
animation: rgbGlow 3s infinite alternate;
}
/* Animations */
@keyframes rgbGlow {
0% { border-color: #ff0000; text-shadow: 0 0 5px #ff0000; }
33% { border-color: #00ff00; text-shadow: 0 0 5px #00ff00; }
66% { border-color: #0000ff; text-shadow: 0 0 5px #0000ff; }
100% { border-color: #ff00ff; text-shadow: 0 0 5px #ff00ff; }
}
/* Fade-in Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* Anime Jedag-Jedug Animation */
@keyframes animeJedagJedug {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
/* Applying Anime Jedag-Jedug Effect */
.profile-container {
animation: animeJedagJedug 1.5s infinite ease-in-out;
}