This is a big commit, and I apologize in advance for the future
git-blames all pointing to me. This commit does a few things:
1. Merges the website/docs and website/www repo into a single website repo
to be in line with other HashiCorp projects
2. Updates to use middleman-hashicorp
3. Converts less to scss to be in line with other projects
4. Updates page styles to be in line with other projects
5. Optimizes images
6. Prepare for S3 + Fastly deployment with scripts, etc.
7. Removes blog posts (they have been transferred to hashicorp.com with
redirects in place
8. Updated sitemap generation script for better SEO
9. Fixed many broken links
10. Add description to all fields
60 lines
1.0 KiB
SCSS
60 lines
1.0 KiB
SCSS
// Import bootstrap
|
|
@import "bootstrap-sprockets";
|
|
@import "bootstrap";
|
|
|
|
// Remote fonts
|
|
@import url("//fonts.googleapis.com/css?family=Inconsolata:400,700");
|
|
|
|
// Core variables and mixins
|
|
@import "_variables";
|
|
|
|
// Utility classes
|
|
@import "_mixins";
|
|
@import "_utilities";
|
|
|
|
// Core CSS
|
|
@import "_fonts";
|
|
|
|
// Global Site
|
|
@import "_global";
|
|
|
|
// Hashicorp Shared Project Styles
|
|
@import "hashicorp-shared/_hashicorp-utility";
|
|
@import "hashicorp-shared/_project-utility";
|
|
@import "hashicorp-shared/_hashicorp-header";
|
|
@import "hashicorp-shared/_hashicorp-sidebar";
|
|
|
|
// Components
|
|
@import "_buttons";
|
|
@import "_header";
|
|
@import "_footer";
|
|
@import "_sidebar";
|
|
|
|
// Pages
|
|
@import "_about";
|
|
@import "_docs";
|
|
@import "_downloads";
|
|
@import "_home";
|
|
@import "_pages";
|
|
@import "_sponsors";
|
|
@import "_vmware";
|
|
|
|
code {
|
|
background-color: rgba($vagrant-blue, 0.1);
|
|
color: $vagrant-blue;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
code {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.legal-text {
|
|
p {
|
|
font-family: $font-family-monospace;
|
|
font-size: 16px;
|
|
}
|
|
}
|