vaguerent/website/pages/home/style.module.css
Kendall Strautman 8173a57904
Style: Update brand colors (#12258)
* style: update brand colors

* chore: upgrade react-component deps

* add new downloads page

* chore: upgrades react-tabs

* chore: update deps

* style: home page color updates

* style: fix vmware background

* chore: upgrade body text color components

* style: adds body-copy color override

* feat: updates favicon

* content(home): swap trusted by logo image

* content(home): updates parity svg

* chore: updates product download page

* chore: updates product download page to stable

* style: fix sticky footer for downloads page

* chore: update favicon path

Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
2021-05-03 11:40:28 -07:00

92 lines
1.3 KiB
CSS

.block {
padding: 100px 0;
/** DEBT: remove when text split body copy color is updated */
& :global(.g-type-body) {
color: var(--gray-2);
}
}
.hero {
display: flex;
align-items: center;
text-align: center;
margin: 150px 0;
& img {
max-width: 445px;
}
& .buttons > * {
margin-right: 15px;
margin-top: 25px;
& > *:last-child {
margin-right: 0;
}
@media (max-width: 500px) {
width: 100%;
margin-top: 20px;
}
}
}
.unifiedWorkflow {
composes: block;
}
/* enforce consistency section */
.enforceConsistency {
composes: block;
& img {
max-width: 70%;
}
}
/* cross-platform section */
.crossPlatform {
composes: block;
& img {
max-width: 130px;
min-width: 20px;
height: auto;
fill: black;
padding: 0 20px;
}
}
/* trusted at scale section */
.trustedAtScale {
composes: block;
background: var(--vagrant-secondary);
& .customerImg {
max-width: 80%;
margin: 50px auto 0 auto;
display: block;
@media (max-width: 800px) {
max-width: 100%;
}
}
}
.tag {
composes: g-type-label from global;
display: inline-block;
background: black;
color: white;
padding: 6px 8px;
}
.h2 {
composes: g-type-display-2 from global;
margin: 20px 0 10px 0;
}