-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdirtlens_.html
More file actions
190 lines (169 loc) · 4.56 KB
/
Copy pathdirtlens_.html
File metadata and controls
190 lines (169 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="DirtLENS Case Study" />
<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=Poppins:wght@400;500;700&display=swap" rel="stylesheet" />
<script src="https://kit.fontawesome.com/fa62c117c7.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css" />
<title>DirtLENS Case Study</title>
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
background-image: url('paperbg.jpg');
background-repeat: repeat;
background-size: cover;
}
header,
main,
footer {
background: transparent;
}
.about {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
padding: 5em 1em;
gap: 3em;
flex-wrap: wrap;
max-width: 1000px;
margin: 0 auto;
background: transparent;
}
.galeriste-img-wrapper {
flex: 1 1 300px;
max-width: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.galeriste-img {
width: 100%;
height: auto;
object-fit: contain;
/* keep border-radius or remove if you prefer */
border-radius: 16px;
}
.about__content {
flex: 1 1 300px;
max-width: 480px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
}
.about__desc {
line-height: 1.6;
font-size: 1.05rem;
max-width: 45ch;
margin-bottom: 2em;
}
.btn-container {
width: 100%;
display: flex;
justify-content: center;
margin-top: 0.5em;
}
.btn--outline {
display: inline-block;
padding: 10px 20px;
border: 2px solid #000;
text-decoration: none;
color: #000;
font-weight: 500;
transition: background-color 0.3s, color 0.3s;
}
.btn--outline:hover {
background-color: #000;
color: #fff;
}
@media (max-width: 800px) {
.about {
flex-direction: column;
align-items: center;
text-align: center;
}
.about__content {
align-items: center;
text-align: center;
max-width: 90%;
}
.about__desc {
text-align: justify;
max-width: 100%;
}
.btn-container {
margin-top: 2em;
}
}
.header, .footer {
text-align: center;
padding: 1em;
}
.nav__list {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 1em;
}
.link {
text-decoration: none;
color: inherit;
}
.scroll-container {
position: fixed;
bottom: 20px;
right: 20px;
}
.scroll-top a {
text-decoration: none;
font-size: 24px;
}
</style>
</head>
<body class="light" id="top">
<header class="header center">
<h3><a href="index.html" class="link">DR.</a></h3>
<nav class="nav center">
<ul class="nav__list center">
<li><a class="link" href="index.html#projects">Projects</a></li>
<li><a class="link" href="index.html#skills">Skills</a></li>
<li><a class="link" href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="about">
<div class="galeriste-img-wrapper">
<img src="dirtlensbroad.png" alt="DirtLENS device mockup" class="galeriste-img" />
</div>
<div class="about__content">
<p class="about__desc">
DirtLENS is a compact, handheld device that helps archaeologists capture soil data in the field. It logs real-time color and GPS coordinates to support rapid data collection. All information is formatted for easy export and is erased after each scan to maintain data security and speed.
</p>
<div class="btn-container">
<a href="DirtLENSBroadsheet.pdf" class="btn--outline">Product Design Showcase</a>
</div>
</div>
</div>
</main>
<footer class="footer">
<a href="index.html" class="link footer__link">Back to Portfolio</a>
</footer>
<div class="scroll-container">
<div class="scroll-top">
<a aria-label="Scroll up" href="#top">
<i class="fas fa-arrow-up" aria-hidden="true"></i>
</a>
</div>
</div>
</body>
</html>