diff --git a/website/source/assets/images/screenshots/vmware_and_virtualbox.png b/website/source/assets/images/screenshots/vmware_and_virtualbox.png deleted file mode 100644 index 2e15ef9c6..000000000 Binary files a/website/source/assets/images/screenshots/vmware_and_virtualbox.png and /dev/null differ diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 3ec38da1c..de152313e 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -1,8 +1,3 @@ -// TODO: remove -$hero-height: 350px; -$baseline: 20px; - - #page-home { // Override the main header #header { @@ -151,4 +146,46 @@ $baseline: 20px; } } } + + .terminal { + border: 1px solid $white; + background-color: $black; + box-sizing: border-box; + color: $white; + font-family: $font-family-monospace; + font-size: 14px; + line-height: 1.8; + margin: 20px auto; + padding: 10px 20px 20px 20px; + + .terminal-content { + margin-top: 15px; + overflow-x: scroll; + width: 100%; + white-space: nowrap; + + span { + display: block; + white-space: pre; + } + } + + span.circle { + &:before { + content: '\25CF'; + color: $white; + font-size: 20px; + line-height: 100%; + height: 100%; + } + } + + span.vbox { + color: rgb(91, 251, 90); + } + + span.vmware { + color: rgb(83, 255, 255); + } + } } diff --git a/website/source/assets/stylesheets/_inner.scss b/website/source/assets/stylesheets/_inner.scss index d20d71398..1fd41e3f3 100644 --- a/website/source/assets/stylesheets/_inner.scss +++ b/website/source/assets/stylesheets/_inner.scss @@ -12,10 +12,16 @@ margin-bottom: 0; } - pre { + pre, + code, + pre code, + tt { font-family: $font-family-monospace; - font-size: ($font-size - 3); - font-weight: normal; + font-size: $font-size - 2; + line-height: 1.6; + } + + pre { padding: 20px; margin: 0 0 $font-size; diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index bac625e0a..c633d2d66 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -3,12 +3,17 @@ $white: #FFFFFF; $black: #000000; $gray-darker: #555555; +$consul-pink: #D62783; +$consul-pink-dark: #961D59; $packer-blue: #1DAEFF; $packer-blue-dark: #1D94DD; +$terraform-purple: #5C4EE5; +$terraform-purple-dark: #4040B2; $vagrant-blue: #1563FF; $vagrant-blue-dark: #104EB2; $vault-black: #000000; $vault-blue: #00ABE0; +$vault-gray: #919FA8; // Typography $font-family-klavika: 'klavika-web', 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 106b75cf5..339720868 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -28,7 +28,34 @@ description: |-
- <%= image_tag 'screenshots/vmware_and_virtualbox.png', class: 'img-responsive' %> +
+ + + +
+ $ packer build template.json + ==> virtualbox: virtualbox output will be in this color. + ==> vmware: vmware output will be in this color. + + ==> vmware: Copying or downloading ISO. Progress will be reported periodically. + ==> vmware: Creating virtual machine disk + ==> vmware: Building and writing VMX file + ==> vmware: Starting HTTP server on port 8964 + ==> vmware: Starting virtual machine... + ==> virtualbox: Downloading VirtualBox guest additions. Progress will be shown periodically. + ==> virtualbox: Copying or downloading ISO. Progress will be reported periodically. + ==> virtualbox: Starting HTTP server on port 8081 + ==> virtualbox: Creating virtual machine... + ==> virtualbox: Creating hard drive... + ==> virtualbox: Creating forwarded port mapping for SSH (host port 3213) + ==> virtualbox: Executing custom VBoxManage commands... + virtualbox: Executing: modifyvm packer --memory 480 + virtualbox: Executing: modifyvm packer --cpus 1 + ==> virtualbox: Starting the virtual machine... + ==> vmware: Waiting 10s for boot... + ==> virtualbox: Waiting 10s for boot... +
+
Infrastructure as code