-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
154 lines (132 loc) · 4.17 KB
/
research.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>research</title>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&family=Staatliches&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Lato', sans-serif;
margin: 40px;
background-color: white;
color: rgb(0, 0, 0);
}
nav {
position: absolute;
top: 130px;
left: 30px;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
margin-bottom: 10px;
}
nav ul li a {
text-decoration: none;
font-family: 'Calibri', sans-serif;
color: #0c6bd2;
font-size: 18px;
transition: background-color 0.3s, color 0.3s;
}
nav ul li a:hover {
background-color: rgb(255, 250, 107);
color: black;
text-decoration: underline;
}
main {
margin-left: 160px; /* Adds space between the main content and navbar/logo */
padding: 20px;
}
h1 {
font-family: 'Staatliches';
color: #131313;
margin-top: 0px;
}
img.logo {
position: absolute;
top: 10px;
left: 15px;
width: 110px;
height: auto;
}
img.mapa {
float: left;
margin-right: 20px;
max-width: 590px;
height: auto;
}
.clearfix {
max-width: 600px; /* Restricts the width of the text and image container */
clear: both;
}
/* Media query for mobile responsiveness */
@media (max-width: 768px) {
body {
margin: 20px;
}
nav {
position: relative;
top: 0;
left: 0;
text-align: center;
margin-bottom: 20px;
}
nav ul {
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 10px;
}
main {
margin-left: 0; /* Removes the large margin for mobile */
padding: 10px; /* Reduces padding for mobile */
}
img.logo {
position: relative;
display: block;
margin: 0 auto;
margin-bottom: 25px;
}
img.mapa {
position: relative;
float: none;
margin-right: 0;
display: block;
margin: 0 auto;
width: 300px;
}
.clearfix {
max-width: 100%;
margin: 0 auto;
}
}
</style>
</head>
<body>
<a href="index.html">
<img src="./images/compass.png" alt="Logo" class="logo">
</a>
<nav>
<ul>
<li><a href="index.html">about</a></li>
<li><a href="research.html">research</a></li>
</ul>
</nav>
<main>
<section id="research">
<div class="clearfix">
<h1>research</h1>
<p>My research sits at the intersection of digital geographies and feminist political ecology. I explore community-based mapping methodologies with a focus on data sovereignty, oral histories, and the development of culturally responsive digital archives.</p>
<p>I am particularly interested in how mapping and geo-storytelling can support Indigenous self-determination and governance in Amazonia and beyond.</p>
<p>I work with a variety of mapping tools and software, including, but not limited to: pen, paper, stories, sound, QGIS, Leaflet, MapBox, ArcGIS, and Google Earth Engine.</p>
<br>
<img src="./images/mapa.jpeg" alt="mapa" class="mapa">
</div>
</section>
</main>
</body>
</html>