website: homepage copy and some stylesheet fixes
This commit is contained in:
parent
8dd8ba10af
commit
3dcb9052b7
|
@ -17,8 +17,8 @@ bundle
|
|||
SCRIPT
|
||||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
config.vm.box = "hashicorp/precise64"
|
||||
config.vm.network "private_network", ip: "33.33.33.10"
|
||||
config.vm.box = "chef/ubuntu-12.04"
|
||||
config.vm.network "private_network", ip: "33.33.30.10"
|
||||
config.vm.provision "shell", inline: $script, privileged: false
|
||||
config.vm.synced_folder ".", "/vagrant", type: "rsync"
|
||||
end
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
<div id="jumbotron">
|
||||
<div class="container">
|
||||
<div class="col-lg-6 col-md-6">
|
||||
<h2 class="rls-l">Create and configure lightweight, reproducible, and portable development environments.</h2>
|
||||
<h2 class="rls-l">
|
||||
Service discovery and configuration made easy.
|
||||
Distributed, highly available, and
|
||||
datacenter-aware.
|
||||
</h2>
|
||||
</div>
|
||||
<div class="jumbo-logo-wrap col-lg-offset-1 col-lg-5 col-md-6 hidden-xs hidden-sm">
|
||||
<div class="jumbo-logo"></div>
|
||||
|
@ -24,7 +28,7 @@
|
|||
</div>
|
||||
<div class="col-lg-7 col-md-7">
|
||||
<h2>Service Discovery</h2>
|
||||
<p>Consul makes it simple for services to register themselves, and to discover other service</p>
|
||||
<p>Consul makes it simple for services to register themselves, and to discover other services via a DNS or HTTP interface.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -60,7 +64,7 @@
|
|||
</div>
|
||||
<div class="col-lg-7 col-md-7">
|
||||
<h2>Shared Configuration</h2>
|
||||
<p>Store hierarchical key/value configuration data for services.</p>
|
||||
<p>Store hierarchical key/value configuration data for services and get notified when any of these values change.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -75,7 +79,11 @@
|
|||
|
||||
<div class="col-xs-12 col-lg-12 explantion">
|
||||
<h2>DNS Query Interface</h2>
|
||||
<p>Make use of Consul's built-in DNS server to resolve requests directly, avoiding expensive HTTP requests.</p>
|
||||
<p>
|
||||
Look up services using Consul's built-in DNS server. This
|
||||
avoids the need for a Consul-specific client in any of your
|
||||
services.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terminal-item col-xs-12 col-lg-12">
|
||||
|
@ -114,7 +122,12 @@
|
|||
|
||||
<div class="col-xs-12 col-lg-12 explantion">
|
||||
<h2>Key Value Storage</h2>
|
||||
<p>Consul provides a flexible key/value store accessible via a simple HTTP API to store just about anything for your application.</p>
|
||||
<p>
|
||||
Consul provides a flexible, hierarchical key/value store accessible
|
||||
via a simple HTTP API. This data is replicated across multiple
|
||||
servers and is highly available. Other HTTP APIs let you long poll
|
||||
for changes to a key.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terminal-item col-xs-12 col-lg-12">
|
||||
|
|
|
@ -138,7 +138,7 @@ body.page-sub{
|
|||
}
|
||||
|
||||
#footer{
|
||||
height: 700px;
|
||||
height: 650px;
|
||||
text-align: center;
|
||||
color: @purple;
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ body.page-home{
|
|||
background-size: 1280px 49px;
|
||||
|
||||
.double-row{
|
||||
padding: 0 0 60px 0;
|
||||
padding: 0 0 50px 0;
|
||||
}
|
||||
|
||||
h2{
|
||||
|
@ -128,7 +128,6 @@ body.page-home{
|
|||
|
||||
|
||||
#footer{
|
||||
padding: 50px 0;
|
||||
background-color: @consul-footer-gray;
|
||||
background: @consul-footer-gray url(../images/consul-footer-logo.png) center center no-repeat;
|
||||
.img-retina("../images/consul-footer-logo.png", "../images/consul-footer-logo@2x.png", 446px, 443px);
|
||||
|
@ -179,7 +178,7 @@ body.page-home{
|
|||
}
|
||||
|
||||
#demos{
|
||||
padding: 30px 0 20px;
|
||||
padding: 30px 0 60px;
|
||||
background-color: @light-purple;
|
||||
|
||||
.explantion {
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
}
|
||||
|
||||
h2{
|
||||
margin-top: 190px;
|
||||
margin-top: 175px;
|
||||
font-size: 40px;
|
||||
line-height: 48px;
|
||||
letter-spacing: 1px;
|
||||
|
|
Loading…
Reference in New Issue