133 lines
5.1 KiB
HTML
133 lines
5.1 KiB
HTML
|
|
|
|
|
|
<!--
|
|
// quick_start_template.html
|
|
//
|
|
// Created by Faye Li on 3 Feb 2017
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Domain List</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600,700"" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
font-family: 'Raleway', sans-serif;
|
|
color: white;
|
|
background: linear-gradient(#2b2b2b, #0f212e);
|
|
}
|
|
.top-bar {
|
|
height: 90px;
|
|
background: linear-gradient(#2b2b2b, #1e1e1e);
|
|
font-weight: bold;
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
width: 480px;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
.content {
|
|
margin-top: 90px;
|
|
padding: 30px;
|
|
}
|
|
input[type=button] {
|
|
font-family: 'Raleway';
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
vertical-align: top;
|
|
height: 28px;
|
|
min-width: 120px;
|
|
padding: 0px 18px;
|
|
margin-right: 6px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: #fff;
|
|
background-color: #000;
|
|
background: linear-gradient(#343434 20%, #000 100%);
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=button]:enabled:hover {
|
|
background: linear-gradient(#000, #000);
|
|
border: none;
|
|
}
|
|
|
|
input[type=button]:active {
|
|
background: linear-gradient(#343434, #343434);
|
|
}
|
|
|
|
input[type=button]:disabled {
|
|
color: #252525;
|
|
background: linear-gradient(#575757 20%, #252525 100%);
|
|
}
|
|
input[type=button][pressed=pressed] {
|
|
color: #00b4ef;
|
|
}
|
|
span.tooltip {
|
|
padding: 0px 5px;
|
|
position: relative;
|
|
background: #FFBB99;
|
|
cursor: pointer;
|
|
}
|
|
.tooltip-info {
|
|
position: absolute;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
}
|
|
span.tooltip::before {
|
|
content: attr(data-tooltip);
|
|
position: absolute;
|
|
top: 1.5em;
|
|
font-size: 0.9em;
|
|
padding: 1px 5px;
|
|
display: none;
|
|
color: white;
|
|
background: rgba(0, 0, 0, 0.75);
|
|
border-radius: 4px;
|
|
transition: opacity 0.1s ease-out;
|
|
z-index: 99;
|
|
text-align: left;
|
|
}
|
|
span:hover::before {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="top-bar">
|
|
<h4>Meta Go App</h4>
|
|
</div>
|
|
<div class="content">
|
|
<h4>The Meta Go app is a new way to view all the High Fidelity domains.</h4>
|
|
<p>Where Would You Like To Go? </p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://AstralGallery';" value="astral gallery" title = "An Astral Gallery, TheArchitect's introductory installation in High Fidelity!" ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://bodymart';" value="body mart" title= "Browse, try on, and find the perfect avatar for every occasion."></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://codex';" value="codex" title = "Warning, This place is used for testing and working on things. Owned by Humbletim and FluffyJenkins." ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://help';" value="help" title = "Get help from High Fidelity pros here." ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://maker';" value="maker" title = "Meet and discuss High Fidelity with the people who make it." ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://slothbox';" value="SlothBox" title "A place to lounge about." = ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://svvr';" " value="SVVR" title = "MULTIVERSE Reality Portal - connecting the global VR community." ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://thespot';" value="The spot" title = "Hang out and meet new friends." ></p>
|
|
<p><input type="button" onclick="window.location.href = 'hifi://zombies';" value="zombie island" title = "Ready to get scared?" ></p>
|
|
</div>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
<script>
|
|
function main() {
|
|
console.log("ready");
|
|
}
|
|
$(document).ready(main);
|
|
</script>
|
|
</body>
|
|
</html>
|