Skip to content

Commit 982a1e4

Browse files
jasoncostellomitchellh
authored andcommitted
lighter body copy for hierarchy via utility classes
1 parent ae77ede commit 982a1e4

3 files changed

Lines changed: 24 additions & 17 deletions

File tree

website/source/assets/stylesheets/_global.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ p {
4444
font-family: $font-family-open-sans;
4545
font-weight: regular;
4646
line-height: 1.5;
47-
opacity: .8;
4847
}
4948

5049
p.lead{

website/source/assets/stylesheets/_utilities.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,11 @@
1414
-o-transform: skewY($skew);
1515
transform: skewY($skew);
1616
}
17+
18+
.sub-black {
19+
color: #545454;
20+
}
21+
22+
.lower-opacity {
23+
opacity: .7;
24+
}

website/source/index.html.erb

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<div class="container">
1818
<div class="row">
1919
<div class="col-md-8">
20-
<p class="lead">Terraform enables you to safely and predictably create, change, and
20+
<p class="lead lower-opacity">Terraform enables you to safely and predictably create, change, and
2121
improve production infrastructure. It is an open source tool that
2222
codifies APIs into declarative configuration files that can be shared amongst team members,
2323
treated as code, edited, reviewed, and versioned. </p>
@@ -72,12 +72,12 @@
7272
<img class="feature-image" id="feature-image-write-sm-screen" src="/assets/images/feature-write-bg.svg" />
7373
<div class="col-sm-4">
7474
<h3>Collaborate &amp; share</h3>
75-
<p>Terraform configuration can be stored in version control,
75+
<p class="sub-black">Terraform configuration can be stored in version control,
7676
shared, and collaborated on by teams of operators.</p>
7777
<h3>Evolve your infrastructure</h3>
78-
<p>Track the complete history of infrastructure versions.</p>
78+
<p class="sub-black">Track the complete history of infrastructure versions.</p>
7979
<h3>Automation friendly</h3>
80-
<p>If it can be codified, it can be automated.</p>
80+
<p class="sub-black">If it can be codified, it can be automated.</p>
8181
</div>
8282
</div>
8383
</div> <!-- /container -->
@@ -91,7 +91,7 @@
9191
<div id="plan-section" class="row">
9292
<div class="col-sm-12">
9393
<h2>One safe workflow across providers</h2>
94-
<p class="lead">Terraform provides an elegant user experience for
94+
<p class="lead lower-opacity">Terraform provides an elegant user experience for
9595
operators to safely and predictably make changes to infrastructure.</p>
9696
</div>
9797
<div class="col-sm-12">
@@ -100,20 +100,20 @@
100100
</div>
101101
<div class="col-sm-4">
102102
<h3>Map resource dependencies</h3>
103-
<p>Understand how a minor change could have potential cascading effects
103+
<p class="lower-opacity">Understand how a minor change could have potential cascading effects
104104
across an infrastructure before executing that change. Terraform
105105
builds a dependency graph from the configurations, and walks this
106106
graph to generate plans, refresh state, and more.</p>
107107
</div>
108108
<div class="col-sm-4">
109109
<h3>Separation of plan &amp; apply</h3>
110-
<p>Separating plans and applies reduces mistakes and uncertainty at
110+
<p class="lower-opacity">Separating plans and applies reduces mistakes and uncertainty at
111111
scale. Plans show operators what would happen, applies execute
112112
changes.</p>
113113
</div>
114114
<div class="col-sm-4">
115115
<h3>One workflow</h3>
116-
<p>Use Terraform to create resources across all major infrastructure
116+
<p class="lower-opacity">Use Terraform to create resources across all major infrastructure
117117
providers (AWS, GCP, Azure, OpenStack, VMware, and more).</p>
118118
</div>
119119
</div>
@@ -126,7 +126,7 @@
126126
<div id="create-section" class="row">
127127
<div class="col-sm-6">
128128
<h2>Reproducible infrastructure</h2>
129-
<p class="lead">Terraform lets operators easily use the same
129+
<p class="lead sub-black">Terraform lets operators easily use the same
130130
configurations in multiple places to reduce mistakes and save time.</p>
131131
</div>
132132
<div class="col-sm-6">
@@ -136,17 +136,17 @@
136136
<div class="row">
137137
<div class="col-sm-4">
138138
<h3>Environment parity</h3>
139-
<p>Use the same Terraform configuration to provision identical staging,
139+
<p class="sub-black">Use the same Terraform configuration to provision identical staging,
140140
QA, and production environments.</p>
141141
</div>
142142
<div class="col-sm-4">
143143
<h3>Shareable modules</h3>
144-
<p>Common Terraform configurations can be packaged as modules and used
144+
<p class="sub-black">Common Terraform configurations can be packaged as modules and used
145145
across teams and organizations.</p>
146146
</div>
147147
<div class="col-sm-4">
148148
<h3>Combine multiple providers consistently</h3>
149-
<p>Terraform allows you to effortlessly combine high-level system
149+
<p class="sub-black">Terraform allows you to effortlessly combine high-level system
150150
providers. Launch a server from one cloud provider, add a DNS entry
151151
with its IP with a different provider. Built-in dependency resolution
152152
means things happen in the right order.</p>
@@ -165,7 +165,7 @@
165165

166166
<div class="col-md-6 explantion">
167167
<h3>Composing Resources</h3>
168-
<p>Use attributes from other resources to create an infrastructure
168+
<p class="sub-black">Use attributes from other resources to create an infrastructure
169169
composed of resources across multiple providers.
170170
</p>
171171
</div>
@@ -199,7 +199,7 @@
199199

200200
<div class="col-md-6 explantion">
201201
<h3>Fast, Simplified Interaction</h3>
202-
<p>Simple and intuitive configuration makes even the most complicated
202+
<p class="sub-black">Simple and intuitive configuration makes even the most complicated
203203
services approachable: no more web consoles, loading bars, or
204204
confusing CLI clients.
205205
</p>
@@ -237,7 +237,7 @@
237237
</div>
238238
</div> <!-- /.terminal-item -->
239239
<div class="cta col-sm-12 col-lg-8 col-lg-offset-2" id="demo-cta">
240-
<p class="lead">The intro contains a walkthrough guide, introductory literature, and
240+
<p class="lead lower-opacity">The intro contains a walkthrough guide, introductory literature, and
241241
a range of examples to experiment with Terraform.</p>
242242
<p>
243243
<a class="terra-btn" href="/intro/index.html">Get started</a>
@@ -267,7 +267,7 @@
267267
<div class="row">
268268
<div class="col-sm-12">
269269
<h2><span>Terraform Enterprise</span></h2>
270-
<p class="lead">Collaborative Infrastructure Automation for
270+
<p class="lead lower-opacity">Collaborative Infrastructure Automation for
271271
organizations. Collaborate on Terraform configurations,
272272
validate changes, and automate provisioning across providers.</p>
273273
<p>

0 commit comments

Comments
 (0)