vaguerent/website/pages/home/style.module.css
Zachary Shilton cf5341c997
Prepare for build-time code highlighting (#12118)
* Bump to nextjs-scripts 14

* Pull in latest code-block

* Bump to stable nextjs-scripts
2021-01-07 14:53:07 -05:00

92 lines
1.2 KiB
CSS

.block {
padding: 100px 0;
}
.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;
background: var(--vagrant);
color: white;
}
/* enforce consistency section */
.enforceConsistency {
composes: block;
& img {
max-width: 70%;
}
}
/* cross-platform section */
.crossPlatform {
composes: block;
background: #0d44cc;
color: white;
& img {
max-width: 130px;
min-width: 20px;
height: auto;
fill: #fff;
padding: 0 20px;
}
}
/* trusted at scale section */
.trustedAtScale {
composes: block;
background: var(--black);
color: white;
& .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: white;
color: black;
padding: 6px 8px;
}
.h2 {
composes: g-type-display-2 from global;
margin: 20px 0 10px 0;
}