2020-01-18 00:18:09 +00:00
|
|
|
/* Global Component Styles */
|
2020-12-17 21:53:33 +00:00
|
|
|
@import '~@hashicorp/mktg-global-styles/style.css';
|
2020-01-18 00:18:09 +00:00
|
|
|
|
|
|
|
:root {
|
2021-05-03 22:01:29 +00:00
|
|
|
--highlight-color: var(--brand-link);
|
2020-01-18 00:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Local Components */
|
2020-05-21 17:18:17 +00:00
|
|
|
@import '../components/footer/style.css';
|
2020-09-08 21:17:36 +00:00
|
|
|
@import '../components/use-case-cta-section/style.css';
|
2020-01-18 00:18:09 +00:00
|
|
|
|
|
|
|
/* Pages */
|
2020-05-21 17:18:17 +00:00
|
|
|
@import './not-found/style.css';
|
2020-01-18 00:18:09 +00:00
|
|
|
|
2020-03-13 17:14:08 +00:00
|
|
|
/* Print Styles */
|
|
|
|
@import './print.css';
|
|
|
|
|
2021-08-20 16:20:18 +00:00
|
|
|
/*
|
|
|
|
* Layout Styles
|
|
|
|
*
|
|
|
|
* Note: this is possibly debt we want to replace.
|
|
|
|
* ref: https://app.asana.com/0/1100423001970639/1200768863236365/f
|
|
|
|
*/
|
2020-01-18 00:18:09 +00:00
|
|
|
.g-section-block section {
|
|
|
|
padding-top: 96px;
|
|
|
|
padding-bottom: 96px;
|
|
|
|
|
2020-07-02 18:24:34 +00:00
|
|
|
& > .g-section-header + *,
|
2021-08-20 16:20:18 +00:00
|
|
|
& > .g-grid-container > .g-section-header + * {
|
2020-07-02 18:24:34 +00:00
|
|
|
margin-top: 72px;
|
|
|
|
}
|
2020-01-18 00:18:09 +00:00
|
|
|
|
2021-01-07 19:40:35 +00:00
|
|
|
&:not(.no-section-spacing) > * + *,
|
2021-08-20 16:20:18 +00:00
|
|
|
&:not(.g-featured-slider-section) > .g-grid-container > * + * {
|
2020-07-02 18:24:34 +00:00
|
|
|
margin-top: 96px;
|
|
|
|
}
|
2020-01-18 00:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.g-section-block .button-container {
|
|
|
|
display: -webkit-box;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
-webkit-box-pack: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin: auto -8px -16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g-section-block section > * + .button-container,
|
2021-08-20 16:20:18 +00:00
|
|
|
.g-section-block section > .g-grid-container > * + .button-container {
|
2020-01-18 00:18:09 +00:00
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g-section-block .button-container > * {
|
|
|
|
margin: auto 8px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g-section-block.theme-black-background-white-text {
|
|
|
|
background: var(--gray-1);
|
|
|
|
color: white;
|
|
|
|
}
|