mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-08 06:37:18 +02:00
* feat:added support for codesandbox * added sandbox config file * feat:added script to generate template for codesandbox * added examples:generate script to package.json file * added failing path to eslintignore * added script to eslintignore * added cleaning feature to script * deleted sandbox script in root * changed comment in codesandboxscript file * update codesandboxscript.js + revert bad package.json changes * eslint should check codesandboxscript Co-authored-by: slorber <lorber.sebastien@gmail.com>
49 lines
707 B
CSS
49 lines
707 B
CSS
/* 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;
|
|
}
|
|
|
|
@media screen and (max-width: 966px) {
|
|
.heroBanner {
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.hero {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
align-items: center;
|
|
place-content: center;
|
|
}
|
|
|
|
.section {
|
|
margin: 10rem;
|
|
}
|
|
|
|
.features {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 2rem 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.featureImage {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|