-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
306 lines (285 loc) · 14 KB
/
project.html
File metadata and controls
306 lines (285 loc) · 14 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontakt</title>
<script src="https://cdn.tailwindcss.com/3.4.16"></script>
<script>tailwind.config={theme:{extend:{colors:{primary:'#3b82f6',secondary:'#64748b'},borderRadius:{'none':'0px','sm':'4px',DEFAULT:'8px','md':'12px','lg':'16px','xl':'20px','2xl':'24px','3xl':'32px','full':'9999px','button':'8px'}}}}</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css">
<style>
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-white min-h-screen">
<!-- Reiter -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex items-center justify-between">
<a href="index.html" class="text-2xl font-['Pacifico'] text-primary">
<img src="images/logo_neu.png" alt="Home" class="h-16 w-auto">
</a>
<nav class="hidden md:flex items-center space-x-8">
<a href="index.html" class="text-gray-500 hover:text-primary transition-colors">Home</a>
<a href="project.html" class="text-primary font-medium flex items-center">Projekt</a>
<div class="relative" id="groupsDropdown">
<button class="text-gray-500 hover:text-primary transition-colors" id="groupsButton">
Gruppen
<i class="ri-arrow-down-s-line ml-1"></i>
</button>
<div class="absolute top-full left-0 mt-2 w-48 bg-white rounded-lg shadow-lg py-2 hidden" id="groupsMenu">
<a href="students.html" class="block px-4 py-2 text-gray-700 hover:bg-gray-50">Mitglieder</a>
<a href="groups.html" class="block px-4 py-2 text-gray-700 hover:bg-gray-50">Gruppen</a>
</div>
</div>
<a href="contact.html" class="text-gray-500 hover:text-primary transition-colors">Kontakt</a>
</nav>
<div class="md:hidden w-10 h-10 flex items-center justify-center">
<i class="ri-menu-line ri-lg"></i>
</div>
</div>
</header>
<!-- Überschrift -->
<section class="bg-gray-50 py-12">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Projekt</h1>
<p class="text-lg text-gray-600">Hier sehen Sie einen Einblick in unser Projekt</p>
</div>
</div>
</section>
<body>
<!-- from IPython.display import SVG, display -->
<!-- svg_code = ''' -->
<svg width="500" height="200" viewBox="0 0 500 200" xmlns="http://www.w3.org/2000/svg">
<!-- Bacterium Body -->
<ellipse cx="250" cy="100" rx="80" ry="40" fill="lightgreen" stroke="green" stroke-width="3" />
<!-- Glucose Molecule (Moving to Bacterium) -->
<circle id="glucose" cx="50" cy="100" r="10" fill="orange">
<!-- Moves the glucose molecule continuously from left to right -->
<animate attributeName="cx" from="50" to="200" dur="3s" repeatCount="indefinite" />
<!-- Makes the glucose fade out (simulate absorption) -->
<animate attributeName="opacity" values="1;0" dur="3s" repeatCount="indefinite" />
</circle>
<!-- Pathway (Metabolic Pathway) -->
<path id="pathway" d="M200 100 C 230 70, 230 130, 270 100" stroke="blue" fill="transparent" stroke-width="2">
<animate attributeName="stroke-dashoffset" from="500" to="0" dur="3s" repeatCount="indefinite" />
</path>
<!-- Product Molecules (Simulating ATP exit and movement toward external atom) -->
<circle id="product1" cx="270" cy="100" r="8" fill="green">
<animate attributeName="cx" from="270" to="320" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="cy" from="100" to="90" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="3s" repeatCount="indefinite" />
</circle>
<circle id="product2" cx="270" cy="110" r="8" fill="green">
<animate attributeName="cx" from="270" to="320" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="cy" from="110" to="120" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="3s" repeatCount="indefinite" />
</circle>
<circle id="product3" cx="270" cy="90" r="8" fill="green">
<animate attributeName="cx" from="270" to="320" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="cy" from="90" to="80" dur="2s" begin="3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="3s" repeatCount="indefinite" />
</circle>
<!-- External Atom (Target for Complex Formation) -->
<circle id="external_atom" cx="400" cy="100" r="10" fill="blue" />
<!-- Product Molecules forming a Complex around the External Atom -->
<circle id="product_complex1" cx="320" cy="90" r="8" fill="green">
<animate attributeName="cx" from="320" to="400" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="cy" from="90" to="100" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="6s" repeatCount="indefinite" />
</circle>
<circle id="product_complex2" cx="320" cy="110" r="8" fill="green">
<animate attributeName="cx" from="320" to="400" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="cy" from="110" to="100" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="6s" repeatCount="indefinite" />
</circle>
<circle id="product_complex3" cx="320" cy="80" r="8" fill="green">
<animate attributeName="cx" from="320" to="400" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="cy" from="80" to="100" dur="2s" begin="6s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="6s" repeatCount="indefinite" />
</circle>
<!-- Internal Metabolism (Rotation effect inside the bacterium) -->
<circle cx="250" cy="100" r="5" fill="red">
<animateTransform attributeName="transform" type="rotate" from="0 250 100" to="360 250 100" dur="2s" repeatCount="indefinite" />
</circle>
</svg>
<!-- ''' -->
<!-- display(SVG(svg_code)) -->
</body>
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 id="chemie" class="text-3xl font-bold text-gray-900 mb-3">Irgendwelche Bilder</h2>
<h3 class="text-lg font-semibold text-gray-900"></a></h3>
<p class="text-gray-600 text-sm mb-4">Text einfügen
</p>
</div>
<div class="grid grid-cols-2 gap-6">
<div class="bg-white rounded-lg border border-gray-100 overflow-hidden shadow-sm hover:shadow-md transition-all group">
<div class="aspect-square relative overflow-hidden">
<img src="images/lab1.jpg" alt="Chemie" class="w-full h-full object-cover object-top group-hover:scale-105 transition-transform duration-300">
<div class="absolute bottom-0 left-0 w-full p-4 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity">
<div class="flex gap-2"></div>
</div>
</div>
<div class="p-6">
<div class="flex items-center justify-between mb-2">
<h3 class="text-lg font-semibold text-gray-900">Laborarbeit</a></h3>
<span class="text-xs font-medium text-primary bg-blue-50 px-2 py-1 rounded-full">Labor </a> </span>
</div>
<p class="text-primary font-medium text-sm mb-2">Stichpunkte </p>
<p class="text-gray-600 text-sm mb-4">Beschreibung einfügen.
</p>
</div>
</div>
<div class="bg-white rounded-lg border border-gray-100 overflow-hidden shadow-sm hover:shadow-md transition-all group">
<div class="aspect-square relative overflow-hidden">
<img src="images/lab2.jpg" alt="Chemie" class="w-full h-full object-cover object-top group-hover:scale-105 transition-transform duration-300">
<div class="absolute bottom-0 left-0 w-full p-4 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity">
<div class="flex gap-2"></div>
</div>
</div>
<div class="p-6">
<div class="flex items-center justify-between mb-2">
<h3 class="text-lg font-semibold text-gray-900">sehfg</a></h3>
<span class="text-xs font-medium text-primary bg-blue-50 px-2 py-1 rounded-full">sejg </span>
</div>
<p class="text-primary font-medium text-sm mb-2">Stichpunkte </p>
<p class="text-gray-600 text-sm mb-4">Beschreibung einfügen.
</p>
</div>
</div>
</div>
<div class="grid grid-cols-2 gap-6">
<div class="bg-white rounded-lg border border-gray-100 overflow-hidden shadow-sm hover:shadow-md transition-all group">
<div class="aspect-square relative overflow-hidden">
<img src="images/lab3.jpg" alt="Chemie" class="w-full h-full object-cover object-top group-hover:scale-105 transition-transform duration-300">
<div class="absolute bottom-0 left-0 w-full p-4 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity">
<div class="flex gap-2"></div>
</div>
</div>
<div class="p-6">
<div class="flex items-center justify-between mb-2">
<h3 class="text-lg font-semibold text-gray-900">Laborarbeit</a></h3>
<span class="text-xs font-medium text-primary bg-blue-50 px-2 py-1 rounded-full">Labor </a> </span>
</div>
<p class="text-primary font-medium text-sm mb-2">Stichpunkte </p>
<p class="text-gray-600 text-sm mb-4">Beschreibung einfügen.
</p>
</div>
</div>
<div class="bg-white rounded-lg border border-gray-100 overflow-hidden shadow-sm hover:shadow-md transition-all group">
<div class="aspect-square relative overflow-hidden">
<img src="images/lab4.jpg" alt="Chemie" class="w-full h-full object-cover object-top group-hover:scale-105 transition-transform duration-300">
<div class="absolute bottom-0 left-0 w-full p-4 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity">
<div class="flex gap-2"></div>
</div>
</div>
<div class="p-6">
<div class="flex items-center justify-between mb-2">
<h3 class="text-lg font-semibold text-gray-900">sehfg</a></h3>
<span class="text-xs font-medium text-primary bg-blue-50 px-2 py-1 rounded-full">sejg </span>
</div>
<p class="text-primary font-medium text-sm mb-2">Stichpunkte </p>
<p class="text-gray-600 text-sm mb-4">Beschreibung einfügen.
</p>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
<!-- Links -->
<div>
<a href="index.html" class="text-2xl font-['Pacifico'] text-primary">
<img src="images/logo_neu.png" alt="Home" class="h-12 w-auto">
</a>
<p class="text-violet-50 font-semibold mb-6">Finde uns hier:</p>
<div class="flex space-x-4">
<a href="https://teams.igem.org/5829" class="w-10 h-10 flex items-center justify-center bg-gray-800 rounded-full hover:bg-primary transition-colors">
<img src="images/igem_logo.png" alt="Logo" class="w-6 h-6" />
</a>
<a href="https://www.instagram.com/igem_stuttgart/" class="w-10 h-10 flex items-center justify-center bg-gray-800 rounded-full hover:bg-primary transition-colors">
<img src="images/Instagram_logo_2016.svg.png" alt="Logo" class="w-6 h-6" />
</a>
</div>
</div>
<!-- Quick links -->
<div>
<h3 class="text-violet-50 font-semibold mb-6">Quick Links</h3>
<ul class="space-y-3">
<li><a href="index.html" class="text-gray-400 hover:text-white transition-colors">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-violet-50 transition-colors">Projekt</a></li>
<li><a href="groups.html" class="text-gray-400 hover:text-violet-50 transition-colors">Gruppen</a></li>
<li><a href="students.html" class="text-gray-400 hover:text-violet-50 transition-colors">Mitglieder</a></li>
<li><a href="contact.html" class="text-gray-400 hover:text-violet-50 transition-colors">Kontakt</a></li>
</ul>
</div>
<!-- Kontakt -->
<div>
<h3 class="text-violet-50 font-semibold mb-6">Direkter Kontakt</h3>
<ul class="space-y-3">
<li>
<a href="mailto:synbioteam@ibmg.uni-stuttgart.de" class="text-gray-400 hover:text-violet-50 transition-colors flex items-start">
<i class="ri-mail-line mr-3 mt-1"></i>
<span>synbioteam@ibmg.uni-stuttgart.de</span>
</a>
</li>
<li>
<a href="mailto:collaboration@studentshowcase.edu" class="text-gray-400 hover:text-violet-50 transition-colors flex items-start">
<i class="ri-mail-line mr-3 mt-1"></i>
<span>Finanzen Mail einfügen</span>
</a>
</li>
<li>
<a href="mailto:info@studentshowcase.edu" class="text-gray-400 hover:text-violet-50 transition-colors flex items-start">
<i class="ri-mail-line mr-3 mt-1"></i>
<span>IT Mail einfügen</span>
</a>
</li>
<li>
<a href="mailto:info@studentshowcase.edu" class="text-gray-400 hover:text-violet-50 transition-colors flex items-start">
<i class="ri-mail-line mr-3 mt-1"></i>
<span>Bio Mail einfügen</span>
</a>
</li>
<li>
<a href="mailto:info@studentshowcase.edu" class="text-gray-400 hover:text-violet-50 transition-colors flex items-start">
<i class="ri-mail-line mr-3 mt-1"></i>
<span>Chemie Mail einfügen</span>
</a>
</li>
</ul>
</div>
<!-- Datenschutz -->
<div class="pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
<p>© 2025 SynBio Team. All rights reserved.</p>
<div class="flex justify-center space-x-4 mt-4">
<a href="#" class="hover:text-violet-50 transition-colors">Privacy Policy</a>
<a href="#" class="hover:text-violet-50 transition-colors">Terms of Service</a>
<a href="#" class="hover:text-violet-50 transition-colors">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const button = document.getElementById('groupsButton');
const menu = document.getElementById('groupsMenu');
button.addEventListener('click', () => {
menu.classList.toggle('hidden');
});
});
</script>
</script>
</body>
</html>