chaitnya26 commited on
Commit
c9ef091
·
verified ·
1 Parent(s): 1597e30

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +189 -1
index.html CHANGED
@@ -7,7 +7,195 @@
7
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
8
  <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
9
  <style>
10
- /* keep your existing theme variables and styles here (unchanged) */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  </style>
12
  </head>
13
  <body>
 
7
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
8
  <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
9
  <style>
10
+ :root {
11
+ --terminal-bg: #0d0f1a;
12
+ --secondary-bg: #151827;
13
+ --accent-bg: #1d2233;
14
+ --border-color: #2c3144;
15
+
16
+ --primary-indigo: #6d5dfc;
17
+ --accent-cyan: #4fd1c5;
18
+ --accent-violet: #a78bfa;
19
+
20
+ --text-primary: #f5f7fa;
21
+ --text-secondary: #9ca3af;
22
+ --text-muted: #6b7280;
23
+
24
+ --gradient-primary: linear-gradient(135deg, #6d5dfc, #4fd1c5);
25
+ --gradient-accent: linear-gradient(135deg, #a78bfa, #6d5dfc);
26
+
27
+ --glow-indigo: 0 0 20px rgba(109,93,252,0.35);
28
+ --glow-cyan: 0 0 20px rgba(79,209,197,0.35);
29
+ }
30
+
31
+ body {
32
+ font-family: 'JetBrains Mono', monospace;
33
+ background: var(--terminal-bg);
34
+ color: var(--text-primary);
35
+ margin: 0;
36
+ padding: 0;
37
+ line-height: 1.6;
38
+ }
39
+
40
+ .header {
41
+ position: fixed;
42
+ top: 0; left: 0; right: 0;
43
+ z-index: 1000;
44
+ background: rgba(13, 15, 26, 0.9);
45
+ backdrop-filter: blur(12px);
46
+ border-bottom: 1px solid var(--border-color);
47
+ }
48
+
49
+ .nav-container {
50
+ max-width: 1200px;
51
+ margin: 0 auto;
52
+ padding: 1rem 2rem;
53
+ display: flex;
54
+ justify-content: space-between;
55
+ align-items: center;
56
+ }
57
+
58
+ .terminal-prompt {
59
+ color: var(--accent-cyan);
60
+ font-weight: 700;
61
+ }
62
+
63
+ .nav-menu {
64
+ list-style: none;
65
+ display: flex;
66
+ gap: 2rem;
67
+ }
68
+
69
+ .nav-menu a {
70
+ text-decoration: none;
71
+ color: var(--text-secondary);
72
+ transition: color 0.3s ease;
73
+ }
74
+ .nav-menu a:hover { color: var(--accent-violet); }
75
+
76
+ .hero {
77
+ min-height: 100vh;
78
+ display: flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ padding: 6rem 2rem;
82
+ background: var(--terminal-bg);
83
+ text-align: center;
84
+ }
85
+
86
+ .hero-title {
87
+ font-size: clamp(2.5rem, 6vw, 5rem);
88
+ font-weight: 900;
89
+ margin-bottom: 1rem;
90
+ }
91
+
92
+ .name-highlight {
93
+ background: var(--gradient-primary);
94
+ -webkit-background-clip: text;
95
+ -webkit-text-fill-color: transparent;
96
+ text-shadow: var(--glow-indigo);
97
+ }
98
+
99
+ .role-highlight {
100
+ background: var(--gradient-accent);
101
+ -webkit-background-clip: text;
102
+ -webkit-text-fill-color: transparent;
103
+ text-shadow: var(--glow-cyan);
104
+ }
105
+
106
+ .hero-subtitle {
107
+ font-size: 1.2rem;
108
+ color: var(--text-secondary);
109
+ margin-bottom: 1.5rem;
110
+ }
111
+
112
+ .hero-description {
113
+ color: var(--text-muted);
114
+ max-width: 700px;
115
+ margin: 0 auto 2.5rem;
116
+ font-size: 1rem;
117
+ }
118
+
119
+ .cmd-btn {
120
+ display: inline-block;
121
+ margin: 0.5rem;
122
+ padding: 0.8rem 1.6rem;
123
+ border: 2px solid var(--primary-indigo);
124
+ color: var(--primary-indigo);
125
+ text-decoration: none;
126
+ font-weight: 600;
127
+ transition: all 0.3s ease;
128
+ }
129
+ .cmd-btn:hover {
130
+ background: var(--primary-indigo);
131
+ color: var(--terminal-bg);
132
+ box-shadow: var(--glow-indigo);
133
+ }
134
+
135
+ .section {
136
+ padding: 5rem 2rem;
137
+ max-width: 1100px;
138
+ margin: 0 auto;
139
+ }
140
+
141
+ .section-title {
142
+ font-size: 2.2rem;
143
+ font-weight: 800;
144
+ color: var(--accent-cyan);
145
+ margin-bottom: 1rem;
146
+ text-align: center;
147
+ text-shadow: var(--glow-cyan);
148
+ }
149
+
150
+ .section-subtitle {
151
+ text-align: center;
152
+ color: var(--text-secondary);
153
+ margin-bottom: 2.5rem;
154
+ }
155
+
156
+ .skills-grid {
157
+ display: grid;
158
+ gap: 2rem;
159
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
160
+ }
161
+
162
+ .skill-terminal {
163
+ background: var(--secondary-bg);
164
+ border: 1px solid var(--border-color);
165
+ padding: 1.5rem;
166
+ }
167
+
168
+ .skill-title {
169
+ font-size: 1.2rem;
170
+ font-weight: 700;
171
+ color: var(--accent-violet);
172
+ margin-bottom: 1rem;
173
+ }
174
+
175
+ .skill-list {
176
+ list-style: none;
177
+ padding-left: 0;
178
+ margin: 0;
179
+ }
180
+ .skill-list li {
181
+ color: var(--text-secondary);
182
+ margin-bottom: 0.5rem;
183
+ }
184
+
185
+ .contact {
186
+ text-align: center;
187
+ }
188
+ .contact a {
189
+ color: var(--accent-cyan);
190
+ text-decoration: none;
191
+ }
192
+ .footer {
193
+ padding: 2rem;
194
+ text-align: center;
195
+ font-size: 0.9rem;
196
+ color: var(--text-muted);
197
+ border-top: 1px solid var(--border-color);
198
+ }
199
  </style>
200
  </head>
201
  <body>