-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (158 loc) · 4.29 KB
/
Copy pathindex.html
File metadata and controls
180 lines (158 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Spider mite diagnostics and sample submission information.">
<title>Spider Mite Diagnostics</title>
<link rel="icon" href="Images/Body/iconweb.png" type="image/x-icon">
<link href="https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0f1512;
--surface: rgba(12, 18, 15, 0.58);
--surface-strong: rgba(12, 18, 15, 0.76);
--text: #f4f7f3;
--muted: #d5ddd5;
--accent: #87c97f;
--accent-hover: #73b96b;
--border: rgba(255, 255, 255, 0.18);
--shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
--radius: 20px;
}
* {
box-sizing: border-box;
}
html,
body {
min-height: 100%;
margin: 0;
}
body {
font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background:
linear-gradient(rgba(5, 10, 8, 0.34), rgba(5, 10, 8, 0.54)),
url("Images/Body/db_TSSM.jpg") center center / cover no-repeat fixed;
display: grid;
place-items: center;
padding: 24px;
}
.card {
width: min(760px, 100%);
background: var(--surface);
border: 1px solid var(--border);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: clamp(24px, 4vw, 48px);
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
margin-bottom: 18px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(135, 201, 127, 0.16);
color: #eaf5e7;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.02em;
}
h1 {
margin: 0 0 14px;
font-size: clamp(2rem, 5vw, 4rem);
line-height: 1.05;
max-width: 12ch;
}
p {
margin: 0;
max-width: 58ch;
color: var(--muted);
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.7;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 28px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 14px 20px;
border-radius: 999px;
border: 1px solid transparent;
text-decoration: none;
font-size: 0.98rem;
font-weight: 700;
transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.btn-primary {
background: var(--accent);
color: #112014;
}
.btn-primary:hover,
.btn-primary:focus-visible {
background: var(--accent-hover);
transform: translateY(-1px);
}
.btn-secondary {
background: transparent;
color: var(--text);
border-color: var(--border);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-1px);
}
.note {
margin-top: 20px;
color: #eef3ee;
font-size: 0.95rem;
}
@media (max-width: 640px) {
body {
padding: 16px;
}
.actions {
flex-direction: column;
}
.btn {
width: 100%;
}
}
</style>
</head>
<body>
<main class="card">
<div class="eyebrow">Grbić Lab - <em>The Spider Mite Team</em></div>
<h1>Website update in progress.</h1>
<p>
Our full website is being refreshed.
</p>
<p>
If you notice unusual spider mite damage on your plants,
you can still contact us and submit infested samples for diagnosis.
</p>
<div class="actions">
<a class="btn btn-primary" href="Attachments/sampling_protocol.pdf" target="_blank" rel="noopener noreferrer">
Send infested samples
</a>
<a class="btn btn-secondary" href="mailto:vgrbic@uwo.ca?subject=Spider%20mite%20sample%20submission">
Contact us by email
</a>
</div>
<p class="note">
The sample submission page opens in a new tab and includes packing instructions, shipping details,
and institutional address.
</p>
</main>
</body>
</html>