-
Notifications
You must be signed in to change notification settings - Fork 0
/
tara-mobileapp.html
56 lines (56 loc) · 1.53 KB
/
tara-mobileapp.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
<!DOCTYPE html>
<html>
<head>
<title>Tara Android Concept</title>
<style>
body {
font-family: 'Cutivemono', monospace;
font-size: 1em;
line-height: 2em;
margin: 0;
padding: 0;
}
h2 {
font-family: 'TW Cen MT', sans-serif;
font-weight: bold;
font-size: 4em;
}
#mobile-concept,
.outer-container {
width: 100%;
height: 100vh;/*96.5vh;*/
}
.outer-container {
/*border: 5px solid purple;*/
position: relative;
overflow: hidden;
}
.inner-container {
position: relative; /*absolute;*/
left: 0;
overflow-x: hidden;
overflow-y: scroll;
}
.inner-container::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body>
<div class="outer-container">
<div class="inner-container">
<div id="mobile-concept">
<img src="proj/tara/mobile-app-v2.png" alt="tara mobile app" style="width:100%"/>
</div>
</div>
</div>
<!--p>
<a href="index.html">Back to slides</a> or <a href="javascript:more()">Point break</a>
</p>
<script>
function more() {
document.getElementById('point-break').style.display = 'block';
}
</script-->
</body>
</html>