forked from kaspermarkus/OER
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (65 loc) · 1.34 KB
/
index.html
File metadata and controls
80 lines (65 loc) · 1.34 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
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>OER Find your Way</title>
<meta name="author" content="Adrian Porras">
</head>
<body>
<style>
body {
background-color: #f1f1f1;
}
h1 {
color: rgb(58,147,165);
}
.single_step {
padding-top: 15px;
clear: both;
}
.steps {
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px #ccc;
width: 60%;
background-color: white;
padding: 15px;
overflow: auto;
}
.image_content{
float: left;
width: 25%;
}
.instructions{
float:left;
width: 70%;
padding-left: 5%;
}
.step_warning{
font-style: italic;
}
</style>
<div class="steps">
<h1>You are 30 minutes away from your destination</h1>
<div id='step_content'>
</div>
<!-- <div class="single_step">
<div class = "title">
<h2>Step 1:</h2>
<div>
<div class="content">
<div class="image_content">
<img src="https://maps.googleapis.com/maps/api/streetview?size=200x200&location=43.6543255,-79.3913666">
</div>
<div class="instructions">
<h3>Head north on Kensington Pl</h3>
<p class="step_warning">
If you feel lost, play this track for someone to ask for direction
</p>
<p class="step_sound">
</p>
</div>
</div>
</div> -->
</div>
</body>
</html>