-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
66 lines (53 loc) · 3.24 KB
/
map.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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Found in Fast Fashion Factories</title>
<link rel = "icon" href ="assets/img/logo.svg" type = "image/x-icon">
<!-- BOOTSTRAP -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<!-- GLOBAL STYLESHEET-->
<link rel='stylesheet' type='text/css' href='./style/global.css'>
<!-- Desktop stylesheet -->
<link rel='stylesheet' type='text/css' href='./style/project.css' media="screen and (min-width:992px)">
<!-- Mobile stylesheet -->
<link rel='stylesheet' type='text/css' href='./style/mobile.css' media="screen and (max-width:991px)">
<style>
#header-row-2 .col-7 span {
margin-left: 2vw;
transform:translate(0, +12%)
}
</style>
</head>
<body style="max-width: 100vw; max-height: 100vh; overflow: hidden">
<!-- HEADER -->
<div id="header">
<div id="header-row-1" class="d-flex justify-content-between m-text standard-margin">
<a href="index.html" style="transform: none"><img src="assets/img/logo.svg" id="header-logo"></a>
<a style="color: blue" href="map.html">MAP</a>
<a href="atlas.html">ATLAS</a>
<a href="project.html">PROJECT</a>
</div>
<div id="header-row-2" class="d-flex m-text standard-margin justify-content-between align-items-center gx-0" style="text-transform: none">
<div class="col-5">This map shows the 1009 factories that were searched.<br>It was possible to retrieve photographic data from 288<br>
of them; the others either had no upload or could not be<br>found on Google Maps at all.
<!-- This map shows the 1003 factories that were searched.<br>It was not possible to retrieve photographic data<br>from all of them, because there was no upload or the location could not be found on Google Maps at all. -->
</div>
<div class="col-7 d-inline-flex justify-content-between align-items-center s-text" style="padding-left: 5vw">
<div class="d-inline-flex align-items-center"><img src="assets/img/blackcircle.svg" style="width: 7px"> <span>factory</span></div>
<div class="d-inline-flex align-items-center"><img src="assets/img/whitecircle.svg" style="width: 10px"> <span>1 image</span></div>
<div class="d-inline-flex align-items-center"><img src="assets/img/whitecircle.svg" style="width: 59px"> <span>100 images</span></div>
<div class="d-inline-flex align-items-center"><img src="assets/img/whitecircle.svg" style="width: 101px"> <span>200 images</span></div></div>
</div>
</div>
<main class="full-width">
<iframe width='100%' height='100%' src="https://api.mapbox.com/styles/v1/ceceteller/cldeiovgs002j01lk71q7ahwp.html?title=false&access_token=pk.eyJ1IjoiY2VjZXRlbGxlciIsImEiOiJjbGJxYnl4dTAwcHFyM3BtcnYxZ2Jlc2tvIn0.gmToR8QFRFVptrHlvBUNlA&zoomwheel=false#4.87/28.25/103.61" title="MyBack" style="border:none;"></iframe>
</main>
<span id="mobile-text" style="position: absolute; padding: 15px; top: 50vh; transform:translate(0, -50%)">Please come back and visit us from your laptop</span>
<!-- JQUERY -->
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
var headerheight = $("#header").height();
$("main").css("padding-top", headerheight)
</script>
</body>