-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobileapp.html
58 lines (57 loc) · 1.64 KB
/
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
57
58
<!DOCTYPE html>
<html lang = "en">
<head>
<title>SI Hub - mobile soon</title>
<link href="css/fonts.css" type="text/css" rel="stylesheet">
<link rel = "icon" type ="image/x-icon" href = "img/favicon.png">
<style>
body
{
text-align: center;
font-family: Nunito Sans, sans-serif;
font-weight: 600;
font-size: larger;
height: 100%;
padding: 3rem;
}
section
{
margin-top: 1rem;
font-style: italic;
}
img
{
width: 35%;
height: 35%;
}
@media screen and (max-width: 760px)
{
img
{
width: 65%;
height: 65%;
}
}
</style>
<script>
function onResizeFun()
{
if(window.innerWidth > 760)
window.location.href = "./";
}
if(window.innerWidth > 760)
window.location.href = "./";
</script>
</head>
<body onresize="onResizeFun()">
<main>
<article>
Mobile version of <u>SIHub</u> will be avalible soon! Stay tuned form more info!
</article>
<section>
<div>Soon in:</div>
<div><img src="img/google_play.png" alt = "Google Play Store"></div>
</section>
</main>
</body>
</html>