2020-05-26 11:33:21 +10:00
|
|
|
/* stylelint-disable docusaurus/copyright-header */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
|
|
* and scoped locally.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.heroBanner {
|
|
|
|
padding: 4rem 0;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2020-06-11 12:58:31 +10:00
|
|
|
background: linear-gradient(150deg, #026fc5, #7929d2);
|
|
|
|
color: #fff;
|
2020-05-26 11:33:21 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 966px) {
|
|
|
|
.heroBanner {
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 12:58:31 +10:00
|
|
|
.getStarted {
|
|
|
|
color: #fff;
|
2020-06-11 13:03:52 +10:00
|
|
|
border-color: #fff;
|
2020-06-11 13:07:21 +10:00
|
|
|
border: solid 1px;
|
2020-06-11 12:58:31 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
.getStarted:hover {
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
border-color: #fff;
|
|
|
|
}
|
|
|
|
|
2020-05-26 11:33:21 +10:00
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 2rem 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.featureImage {
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
|
|
|
}
|