mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
a2e2bd7960
* init homepage * adds tutorials * update subnav * adds intro background * add offerings * adds in practice cta * include radial gradient * cleanup gradient * Fix learn more button display * include use case pages * connect subnav menu items * extract in practice section for reuse * use Products type * fix type error * add neutral option * rework cta logic * Fix links map * fix use case path * updates accent method * fix button prop usage * refactor customer case study * refactor case studies component * cleanup margin * refactor data props * fix offering cta * spacing updates and introduce intro component * adds intro interface * removes footer border * fix intro description color * add revalidate code to homepage * cleanup unused imports * bump subnav * makes stats optional * adjust border radius based on customer story * redirect /home to homepage * fix: turtorials link * fix: logo alignment * fix: section background color * feat: home reorder and tuts and docs links * fix: flush padding * formatting * feat: sort use cases in nav * fix: card overflow * fix: adjust overflow method * fix: padding on desktop * fix: card container overflow padding on mobile * fix: intro cta conditional * fix: simplify conditional * fix: customer logo sizing * cleanup old data * accept isInternalLink as arg * remove chunk * fix: isInternalLink usage * fix: isInternalLink prop usage * fix: add lang to document * init homepage * adds tutorials * add offerings * cleanup unused imports * bump subnav * fix: flush padding * formatting * fix: intro cta conditional * fix: simplify conditional * cleanup old data * add consul on kubernetes to menu items * add use case redirect * Add use case redirect
107 lines
1.5 KiB
CSS
107 lines
1.5 KiB
CSS
.section {
|
|
position: relative;
|
|
max-width: 1600px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-top: 64px;
|
|
padding-bottom: 64px;
|
|
|
|
@media (--medium-up) {
|
|
padding-top: 132px;
|
|
padding-bottom: 132px;
|
|
}
|
|
|
|
& + .section {
|
|
padding-bottom: 132px;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: var(--gray-6);
|
|
opacity: 0.4;
|
|
|
|
@media (--medium-up) {
|
|
border-radius: 6px;
|
|
left: 24px;
|
|
right: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.isFlush {
|
|
padding-bottom: 96px;
|
|
|
|
@media (--medium-up) {
|
|
padding-bottom: 164px;
|
|
}
|
|
|
|
&::before {
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container {
|
|
composes: g-grid-container from global;
|
|
}
|
|
|
|
.columns {
|
|
--columns: 1;
|
|
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
|
|
gap: 32px;
|
|
|
|
@media (--medium-up) {
|
|
--columns: 12;
|
|
}
|
|
}
|
|
|
|
.column {
|
|
&:nth-child(1) {
|
|
@media (--medium-up) {
|
|
grid-column: 1 / 7;
|
|
}
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
@media (--medium-up) {
|
|
grid-column: 8 / -1;
|
|
padding-top: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.eyebrow {
|
|
margin: 0;
|
|
composes: g-type-display-5 from global;
|
|
}
|
|
|
|
.heading {
|
|
margin: 16px 0 32px;
|
|
padding-bottom: 32px;
|
|
composes: g-type-display-3 from global;
|
|
border-bottom: 1px solid var(--black);
|
|
}
|
|
|
|
.description {
|
|
composes: g-type-body from global;
|
|
|
|
& > p {
|
|
margin: 0;
|
|
|
|
& + p {
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.cta {
|
|
margin-top: 32px;
|
|
}
|