added the rest of the required content

This commit is contained in:
Guy Lepage
2017-02-26 21:06:19 -05:00
parent d6d5b9aacc
commit 3cb04c8a37
2 changed files with 47 additions and 20 deletions

View File

@@ -7,7 +7,7 @@
/* Base structure */
html, body {-webkit-overflow-scrolling:touch;}
body{padding-top:0;padding-bottom:0;}
body{padding-top:0;padding-bottom:0;background-color:#270F34!important;}
/* Spacing */
.m-t-0{margin-top:0px;}
@@ -96,6 +96,7 @@ a{font-weight:500;}
.col-centered{float:none;margin:0 auto;}
.no-padding{padding-right:0;padding-left:0;}
.bg-primary{background-color:#270F34!important;}
.hero{color:#fff;margin-top:18%;}
/* Spacing */
@@ -124,6 +125,9 @@ body,html,#app,.app-landing{height:100%;}
.spacing-container{padding-top:102px;padding-bottom:50px;background-color:rgba(248,249,251,1);}
.foot-feature{margin:0;padding-top:150px;padding-bottom:150px;background-color:#270F34;color:rgba(255,255,255,1);text-align:center;}
h2.action-title{margin-bottom:35px;font-size:30px;line-height:42px;font-weight:300;}
.app-center{display:flex;align-items:center;justify-content:center;}
.app-wrap{width:940px;display:flex;align-items:center;justify-content:center;}
.app-container{display:flex;align-items:center;justify-content:center;}
/* Media queries */

View File

@@ -58,25 +58,48 @@
<script src="/static/js/bootstrap/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar-fixed-top bg-primary">
<header class="container nav-header">
<nav class="navbar navbar-toggleable-md">
<a href="/" class="navbar-brand brand-bug">
<img src="/static/images/blockstack-bug-rev.svg">
</a>
<a href="/" class="navbar-brand">
<img src="/static/images/blockstack-logo-landscape-rev.svg">
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a href="/" class="nav-link"></a>
</li>
<li class="nav-item">
<a href="/" class="nav-link">Blockstack Search</a>
</li>
</ul>
</nav>
</header>
<div class="wrapper">
<div class="navbar-fixed-top bg-primary">
<header class="container nav-header">
<nav class="navbar navbar-toggleable-md">
<a href="/" class="navbar-brand brand-bug">
<img src="/static/images/blockstack-bug-rev.svg">
</a>
<a href="/" class="navbar-brand">
<img src="/static/images/blockstack-logo-landscape-rev.svg">
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a href="/" class="nav-link"></a>
</li>
<li class="nav-item">
<a href="/" class="nav-link">Blockstack Search</a>
</li>
</ul>
</nav>
</header>
</div>
<div class="container-fluid">
<div class="container">
<section class="hero">
<div class="col-sm-12 col-md-6">
<h1 class="hero-head">
Blockstack Search
</h1>
<p class="lead hero-lead block">
The search subsystem for Blockstack Core creates a search index for data associated with names registered on Blockstack. The search subsystem currently indexes the .id namespace but can be easily expanded to include other namespaces.
</p>
<p class="lead hero-lead block">
You can query this node by sending queries like: <br /><br />
https://search.blockstack.org/search?query=wenger
</p>
<p class="lead hero-lead block">
You can deploy your own search node by following the instructions on <a href="https://github.com/blockstack/blockstack-core/tree/search/api/search">this Github repo</a>. The search subsystem is part of Blockstack Core, which is released as open-source software.
</p>
</div>
</section>
</div>
</div>
</div>
</body>
</html>