-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
258 lines (250 loc) · 8.8 KB
/
index.html
File metadata and controls
258 lines (250 loc) · 8.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SDL/AL Guide - GormleyLab</title>
<style>
:root {
--accent: #cc0033;
--primary: #2f363d;
--primary-dark: #262c31;
--bg: #dadada;
--card-bg: #ffffff;
--text: #333;
--radius: 10px;
--shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
* {
box-sizing: border-box;
}
/* Reset all possible border effects */
*::before,
*::after {
border: none !important;
border-left: none !important;
content: none !important;
}
.card *:not(.btn),
.card *:not(.btn)::before,
.card *:not(.btn)::after {
border-left-width: 0 !important;
border-left-style: none !important;
border-left-color: transparent !important;
}
body {
margin: 0;
font-family: "Segoe UI", system-ui, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
header {
background: var(--accent);
color: #fff !important;
text-align: center;
padding: 3rem 1rem 2.5rem;
position: relative;
z-index: 1;
}
header h1 { margin: 0 0 0.5rem; }
.logo {
position: relative;
top: -1rem;
width: 100%;
height: auto;
max-height: 180px;
max-width: 500px;
object-fit: contain;
transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
.logo {
max-width: 600px;
max-height: 200px;
}
}
@media (max-width: 768px) {
.logo {
max-width: 80%;
max-height: 140px;
}
}
@media (max-width: 480px) {
.logo {
max-width: 90%;
max-height: 100px;
}
}
.github-btn {
display: inline-block;
margin-top: 1rem;
padding: 0.4rem 1.3rem;
background: #24292e;
color: #fff !important;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
border: 1px solid rgba(255,255,255,0.2);
transition: background-color 0.2s;
position: relative;
z-index: 5;
cursor: pointer;
}
.github-btn:hover {
background: #2f363d;
color: #fff !important;
}
.container {
max-width: 1050px;
margin: -2rem auto 4rem;
padding: 0 1.25rem;
}
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--card-bg);
border-left: 5px solid var(--accent);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 1.75rem 1.5rem 1.5rem;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: box-shadow 0.15s ease;
z-index: 3;
}
.card:hover {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.card h2 {
margin: 0 0 0.55rem;
font-size: 1.25rem;
border: none;
}
.card p { margin: 0 0 1rem; }
.btn {
display: block;
padding: 0.55rem 1.2rem;
margin: 0.35rem 0.4rem 0 0;
background: var(--primary);
color: #fff !important;
text-decoration: none;
border-radius: 4px;
font-size: 0.95rem;
text-align: center;
transition: background 0.15s ease;
}
.btn:hover { background: var(--primary-dark); }
footer {
text-align: center;
color: #666;
padding: 2.5rem 1rem 3rem;
font-size: 0.9rem;
}
.section-title {
font-size: 1.4rem;
margin-bottom: 0.5rem;
color: var(--accent);
z-index: 2;
}
/* Remove all border effects on text hover */
.card h1,
.card h2,
.card h3,
.card p,
.card span,
.card div,
.card *:not(.btn) {
border: none !important;
border-left: none !important;
border-right: none !important;
border-top: none !important;
border-bottom: none !important;
outline: none !important;
box-shadow: none !important;
}
/* Ensure no hover effects on text */
.card *:not(.btn):hover {
border: none !important;
border-left: none !important;
border-right: none !important;
border-top: none !important;
border-bottom: none !important;
outline: none !important;
box-shadow: none !important;
}
</style>
</head>
<body>
<!-- ===== HERO ===== -->
<header>
<img src="https://raw.githubusercontent.com/GormleyLab/SDLGuide/main/Images/gllogo.png" alt="Gormley Lab Logo" class="logo">
<h1>Welcome to the User's Guide to AL/SDLs Repository</h1>
<p>Explore build guides, software, and hands-on tutorials for automated liquid handling and experiment optimization.</p>
<a href="https://github.com/GormleyLab/SDLGuide" target="_blank" class="github-btn">View on GitHub</a>
</header>
<main class="container">
<!-- ===== LIQUID HANDLERS ===== -->
<section class="card" style="border:none; box-shadow:none; margin-top:2.5rem; padding-bottom:0; margin-bottom: 0.5rem;">
<h2 class="section-title">Liquid Handler Platforms</h2>
<p>Choose your platform to access build guides, software, and documentation.</p>
</section>
<div class="cards-grid">
<!-- Pen Plotter Liquid Handler -->
<section class="card">
<h2>Pen Plotter Liquid Handler</h2>
<p>Original AxiDraw-based liquid handler with build guides and SOP.</p>
<div>
<a class="btn" href="https://github.com/GormleyLab/SDLGuide/tree/main/Pen%20Plotter%20Liquid%20Handler" target="_blank">Pen Plotter Github</a>
<a class="btn" href="Pen%20Plotter%20Liquid%20Handler/Pen%20Plotter%20LH%20Build%20Guide.pdf" target="_blank">Build Guide</a>
<a class="btn" href="Pen%20Plotter%20Liquid%20Handler/SDL_SOP.pdf" target="_blank">Software SOP</a>
<a class="btn" href="https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/GormleyLab/SDLGuide/tree/main/Pen%20Plotter%20Liquid%20Handler/Pen%20Plotter%20SDL%20Software&fileName=Pen_Plotter_SDL_Software" target="_blank">Software Download</a>
</div>
</section>
<!-- Pipette Liquid Handler -->
<section class="card">
<h2>Pipette Liquid Handler</h2>
<p>Automated pipetting platform with SDL software and full build documentation.</p>
<div>
<a class="btn" href="https://github.com/GormleyLab/Pipette-Liquid-Handler" target="_blank">Pipette GitHub</a>
<a class="btn" href="https://gormleylab.github.io/Pipette-Liquid-Handler/Pipette%20Liquid%20Handler%20Building%20Guide.pdf" target="_blank">Build Guide</a>
<a class="btn" href="https://github.com/GormleyLab/Pipette-Liquid-Handler/blob/main/Pipette%20Liquid%20Handler%20Parts%20List.xlsx" target="_blank">Parts List</a>
<a class="btn" href="https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/GormleyLab/Pipette-Liquid-Handler/tree/main/Pipette%20SDL%20Software&fileName=Pipette_SDL_Software" target="_blank">Software Download</a>
</div>
</section>
</div>
<!-- ===== HANDS-ON TUTORIALS ===== -->
<section class="card" style="border:none; box-shadow:none; margin-top:2.5rem; padding-bottom:0; margin-bottom: 0.5rem;">
<h2 class="section-title">Hands-on Tutorial</h2>
<p>Work through practical examples using local Jupyter notebooks or Google Colaboratory notebooks.</p>
</section>
<div class="cards-grid">
<!-- Section 1 -->
<section class="card">
<h2>Notebook 1 · Introduction to Active Learning</h2>
<p>Bayesian Optimization (BO) applied to a 2D black-box function. This notebook introduces the foundational concepts of active learning.</p>
<div>
<a class="btn" href="https://github.com/GormleyLab/SDLGuide/blob/main/Hands-on%20Tutorial/Notebook%201%20-%20AL%20Tutorial.ipynb" target="_blank">Jupyter Notebook</a>
<a class="btn" href="https://colab.research.google.com/drive/1bBl2bTz1-Y4bTuPBKBZ19CbYj2Hosa-n?usp=sharing" target="_blank">Google Colab Notebook</a>
</div>
</section>
<!-- Section 2 -->
<section class="card">
<h2>Notebook 2 · Self-Driving Labs Guide</h2>
<p>Learn how active learning can be used to efficiently select informative experiments and accelerate discovery in scientific research.</p>
<div>
<a class="btn" href="https://github.com/GormleyLab/SDLGuide/blob/main/Hands-on%20Tutorial/Notebook%202%20-%20SDL%20Tutorial.ipynb" target="_blank">Jupyter Notebook</a>
<a class="btn" href="https://colab.research.google.com/drive/1ZPV6cRpGM88QMxzig-_tydrwvuxpjUa8?usp=sharing" target="_blank">Google Colab Notebook</a>
</div>
</section>
</div>
</main>
<footer>
© 2025 GormleyLab · Powered by GitHub Pages · Last Updated: 10/02/2025
</footer>
</body>
</html>