-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (124 loc) · 5.62 KB
/
index.html
File metadata and controls
138 lines (124 loc) · 5.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guru Subramani</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #FBF9F5; color: #2F3337; font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', 'Liberation Mono', Menlo, Monaco, Consolas, monospace; font-size: 14px; line-height: 1.6; padding: 20px; font-weight: 500; }
header { margin-bottom: 30px; border-bottom: 2px solid #2F3337; padding-bottom: 15px; }
.header-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
address { font-style: normal; line-height: 1.8; }
address a { display: inline; }
h1 { font-size: 24px; margin-bottom: 5px; color: #2F3337; }
h2 { font-size: 18px; margin-top: 20px; margin-bottom: 5px; color: #2F3337; }
a { color: #A85A41; text-decoration: none; border-bottom: 1px solid #A85A41; }
a:hover { background-color: #A85A41; color: #FBF9F5; }
section { margin-bottom: 20px; background-color: #F0EDE9; padding: 15px; }
ul { margin-left: 20px; list-style: none; }
li { margin-bottom: 15px; }
.interest-label { display: block; color: #A85A41; font-size: 15px; margin-bottom: -25px; border-bottom: none; }
.interest-label:hover { background-color: transparent; color: #7D4B38; }
.interest-desc { color: #666666; font-size: 13px; font-weight: 400;}
/* Logo cards grid */
.logos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 15px; }
.logo-card { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 140px; margin: 0 auto; }
.logo-frame { display: flex; align-items: center; justify-content: center; width: 140px; height: 140px; border: 1px solid #ddd; border-radius: 8px; padding: 8px; background-color: #fff; }
.rmi-frame { background-color: #000; border: 1px solid #000; }
.list-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
.rmi-logo { filter: brightness(1.1); }
.card-text { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; margin-top: 8px; }
.card-text .interest-label { margin-bottom: -12px; font-size: 13px; }
.card-text .interest-desc { font-size: 11px; margin-top: 2px; }
.project-card { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.project-card img { width: 100%; max-width: 600px; height: auto; object-fit: cover; border: 1px solid #A85A41; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.project-card h3 { font-size: 16px; margin: 0 0 8px 0; color: #2F3337; }
.project-card p { color: #666666; font-size: 13px; margin: 0; line-height: 1.5; }
footer { margin-top: 40px; border-top: 2px solid #2F3337; padding-top: 15px; text-align: center; font-size: 12px; color: #A0A0A0; }
/* Robot Arm Animation - moved to after profile-section styles */
.robot-arm-container canvas {
display: block;
width: 100%;
height: 100%;
}
#gripperLink {
position: absolute;
width: 60px;
height: 2px;
pointer-events: none;
transform-origin: 0% 50%;
z-index: 11;
/* uncomment border to debug: */
/* border: 1px solid red; */
}
/* Profile section layout */
.profile-section {
display: flex;
gap: 25px;
margin-bottom: 20px;
align-items: center;
}
.profile-picture-container {
flex: 0 0 42%;
min-width: 200px;
}
.profile-picture {
width: 100%;
height: auto;
border-radius: 14px;
border: 1px solid #A85A41;
object-fit: cover;
display: block;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.profile-content {
flex: 1;
min-width: 0;
}
.robot-arm-container {
position: relative;
width: 100%;
height: 140px;
margin-bottom: 10px;
overflow: hidden;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.profile-section {
flex-direction: column;
gap: 20px;
align-items: center;
}
.profile-picture-container {
flex: 0 0 100%;
max-width: 300px;
}
.profile-content {
width: 100%;
}
.logos-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
.logo-card { max-width: 120px; }
.logo-frame { width: 120px; height: 120px; padding: 6px; }
}
@media (max-width: 480px) {
.profile-picture-container {
max-width: 100%;
}
.profile-section {
gap: 15px;
}
.logos-grid { grid-template-columns: 1fr; gap: 12px; }
.logo-card { max-width: 100px; }
.logo-frame { width: 100px; height: 100px; padding: 5px; }
}
</style>
</head>
<body>
<noscript>
<p>This site requires JavaScript to display content. Please enable JavaScript in your browser settings.</p>
</noscript>
<div id="app"></div>
<script src="app.js"></script>
</body>
</html>