Zachary Shilton 1382832b9d
Upgrade global styles (#12470)
* website: upgrade global-style dependencies

* website: use hideOnMobile for alert banner

* website: remove deprecated --site-max-width on community page

* website: replace g-container with g-grid-container

* website: backfill missing heading styles

* website: remove duplicative not-found page folder

* website: use new download page for vmware utility

* website: replace fake vmware utility logo with plain text

* website: bump to downloads-page pre-release to prove out

* website: bump to product-downloads stable release

* website: bump to patched content component

* website: add comment on vmware download page config

* chore(website): use new interface on vmware downloads page
2021-08-27 15:28:49 -04:00

51 lines
720 B
CSS

.root {
display: flex;
flex-direction: row;
justify-content: space-between;
@media (max-width: 1000px) {
flex-direction: column;
}
}
.reverse {
flex-direction: row-reverse;
@media (max-width: 1000px) {
flex-direction: column;
}
}
.tag {
composes: g-type-label from global;
display: inline-block;
background: black;
color: white;
padding: 6px 8px;
}
.headline {
composes: g-type-display-2 from global;
margin: 20px 0 10px 0;
}
.text {
width: 50%;
@media (max-width: 1000px) {
width: 100%;
margin-bottom: 50px;
}
}
.content {
width: 46%;
display: flex;
align-items: center;
justify-content: center;
@media (max-width: 1000px) {
width: 100%;
}
}